12 lines
305 B
Dart
12 lines
305 B
Dart
import 'download_result.dart';
|
|
|
|
Future<bool> ensureStorageAccessImpl() async => true;
|
|
|
|
Future<DownloadResult> downloadEcardImpl({
|
|
required String url,
|
|
required String fileName,
|
|
Map<String, String>? headers,
|
|
}) async {
|
|
return DownloadResult.failure('Download is not supported on this platform');
|
|
}
|