1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-29 02:11:37 +01:00
nc-photos/lib/platform/downloader.dart
2021-04-10 12:28:12 +08:00

7 lines
204 B
Dart

import 'package:nc_photos/account.dart';
import 'package:nc_photos/entity/file.dart';
abstract class Downloader {
/// Download file to device
Future<void> downloadFile(Account account, File file);
}