pickFiles method

Future<FilePickerResult?> pickFiles({
  1. FileType type = FileType.any,
  2. bool allowCompression = true,
  3. int compressionQuality = 30,
  4. bool allowMultiple = false,
  5. bool withData = false,
  6. bool withReadStream = false,
  7. bool lockParentWindow = false,
  8. List<String>? allowedExtensions,
})

Returns the FilePickerResult of the file picking of the provided type.

Implementation

Future<FilePickerResult?> pickFiles({
  FileType type = FileType.any,
  bool allowCompression = true,
  int compressionQuality = 30,
  bool allowMultiple = false,
  bool withData = false,
  bool withReadStream = false,
  bool lockParentWindow = false,
  List<String>? allowedExtensions,
}) async {
  try {
    FileType accounted = type;
    if (type == FileType.custom && isMobile) {
      if (allowedExtensions == NativeFile.images) {
        accounted = FileType.image;
        allowedExtensions = null;
      }
    }

    return await FilePicker.platform.pickFiles(
      type: accounted,
      allowCompression: allowCompression,
      compressionQuality: compressionQuality,
      allowMultiple: allowMultiple,
      withData: withData,
      withReadStream: withReadStream,
      lockParentWindow: lockParentWindow,
      allowedExtensions:
          accounted == FileType.custom ? allowedExtensions : null,
    );
  } on PlatformException catch (e) {
    if (e.code == 'already_active') {
      return null;
    } else {
      rethrow;
    }
  }
}