mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-06-06 05:49:03 +08:00
11 lines
212 B
Dart
11 lines
212 B
Dart
import 'dart:typed_data';
|
|
|
|
void saveFileWeb(
|
|
Uint8List data, String mimeType, String filenameWithoutExtension) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
void saveUriWeb(String uri) {
|
|
throw UnimplementedError();
|
|
}
|