mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
11 lines
270 B
Dart
11 lines
270 B
Dart
|
import 'dart:typed_data';
|
||
|
|
||
|
abstract class FileSaver {
|
||
|
/// Save binary content to a file
|
||
|
///
|
||
|
/// The return data depends on the platform
|
||
|
/// - web: null
|
||
|
/// - android: Uri to the downloaded file
|
||
|
Future<dynamic> saveFile(String filename, Uint8List content);
|
||
|
}
|