nc-photos/lib/platform/downloader.dart
2021-05-01 01:02:41 +08:00

11 lines
321 B
Dart

import 'package:nc_photos/account.dart';
import 'package:nc_photos/entity/file.dart';
abstract class Downloader {
/// Download file to device
///
/// The return data depends on the platform
/// - web: null
/// - android: Uri to the downloaded file
Future<dynamic> downloadFile(Account account, File file);
}