50n13x
Results
1
issues of
50n13x
Hi, Following piece of code: FilePickerResult? result = await FilePicker.platform.pickFiles(allowMultiple: true); if (result != null) { for(int x = 0; x < result.files.length; x++) { print(result.files[x].name); Uint8List bytes = result.files[x].bytes...