pickFiles method
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',
);
}