blob: 91fb5a128ccc341a25dcd90b02e9d00903b66cf6 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Utility service for agnostically downloading files locally onto a device.
class Downloader {
Future<bool> download(String href, String fileName, {String idToken}) async =>
throw Exception('Download not implemented for this platofrm');
}