pickFile static method
Picks a file and return a
XFile.
If the user cancels the picker, it returns null
.
Implementation
static Future<FcFilePickerPath?> pickFile() async {
final res = await pickFilesCore();
return res?.first;
}
Picks a file and return a
XFile.
If the user cancels the picker, it returns null
.
static Future<FcFilePickerPath?> pickFile() async {
final res = await pickFilesCore();
return res?.first;
}