18 lines
336 B
Dart
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';
|
|
}
|