pickFiles method
Future<FilePickerResult?>
pickFiles(
- FileType type,
- List<
String> ? allowedExtensions, - String? dialogTitle,
- String? initialDirectory,
- dynamic onFileLoading()?,
- bool? allowCompression,
- bool allowMultiple,
- bool? withData,
- bool? withReadStream,
- bool lockParentWindow,
override
Implementation
@override
Future<FilePickerResult?> pickFiles(
FileType type,
List<String>? allowedExtensions,
String? dialogTitle,
String? initialDirectory,
Function(FilePickerStatus p1)? onFileLoading,
bool? allowCompression,
bool allowMultiple,
bool? withData,
bool? withReadStream,
bool lockParentWindow) =>
_getPath(
type,
allowMultiple,
allowCompression,
allowedExtensions,
onFileLoading,
withData,
withReadStream,
);