I got the Excel file from file-picker as Uint8list, and convert to it File now:
FilePickerResult result = await FilePicker.platform.pickFiles( type: FileType.custom, allowedExtensions: ['xlsx'], );
if (result != null)
{ var file = File.fromRawPath(result.files.single.bytes);
}
How I convert it to a Syncfusion XLSIO workbook (fromUint8list or File) for reading data from sheet 0 ? Thanks.