blob: f2284ec8c14629fba27a63651dc6c54def80ac1e [file] [log] [blame]
// Copyright 2019 The Flutter 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 platform');
}