11 lines
274 B
Dart
11 lines
274 B
Dart
import 'download_result.dart';
|
|
|
|
Future<DownloadResult> downloadFileFromUrlImpl(
|
|
String url, {
|
|
String? fileName,
|
|
Map<String, String>? headers,
|
|
bool openAfterDownload = false,
|
|
}) async {
|
|
return DownloadResult.failure('Download is not supported on this platform');
|
|
}
|