Answers for "flutter image.file size"

0

flutter get file size

final file = File('pickedVid.mp4');            
int sizeInBytes = file.lengthSync();
double sizeInMb = sizeInBytes / (1024 * 1024);
if (sizeInMb > 10){
    // This file is Longer the
}
Posted by: Guest on October-28-2021
0

how to get image file size in flutter

final bytes = image.readAsBytesSync().lengthInBytes;
final kb = bytes / 1024;
final mb = kb / 1024;
Posted by: Guest on April-19-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language