Future<void> checkSizeWeb(XFile file) async { // Read the file as bytes asynchronously final bytes = await file.readAsBytes(); }
I used readAsBytes() instead of readAsBytesSync(). and changed from a File to an XFile