Files
packages.dart/deprecated/file_access/lib/src/pick_file/unsupported.dart
T
2026-01-15 14:38:46 -08:00

18 lines
336 B
Dart

import 'package:file_access/file_access.dart';
Future<FileX> openFile() async {
throw 'Platform Not Supported';
}
Future<List<FileX>> openFiles() async {
throw 'Platform Not Supported';
}
Future<FileX> pickImage() async {
throw 'Platform Not Supported';
}
Future<FileX> pickVideo() async {
throw 'Platform Not Supported';
}