pickFiles method

  1. @override
Future<List<PickedFile>?> pickFiles(
  1. FilePickerOptions options
)
override

Picks files from the device storage based on the provided options.

Platform implementations should override this method to handle file picking on their respective platforms.

Implementation

@override
Future<List<PickedFile>?> pickFiles(FilePickerOptions options) async {
  throw UnsupportedError(
    'Web implementation is not supported on this platform',
  );
}