pickFiles method

  1. @override
Future<FilePickerResult?> pickFiles(
  1. FileType type,
  2. List<String>? allowedExtensions,
  3. String? dialogTitle,
  4. String? initialDirectory,
  5. dynamic onFileLoading(
    1. FilePickerStatus p1
    )?,
  6. bool? allowCompression,
  7. bool allowMultiple,
  8. bool? withData,
  9. bool? withReadStream,
  10. 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,
    );