pickFiles method

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

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

Future<List<PickedFile>?> pickFiles(FilePickerOptions options) {
  throw UnimplementedError('pickFiles() has not been implemented.');
}