Answers for "device shows wrong file size flutter"

1

flutter check file size

file.lengthSync()
Posted by: Guest on August-11-2020
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

Code answers related to "device shows wrong file size flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language