toSizeInMB property
double
get
toSizeInMB
Implementation
double get toSizeInMB {
if (this == null) throw Exception('File Kosong');
int sizeInBytes = this!.lengthSync();
double sizeInMb = sizeInBytes / (1024 * 1024);
return sizeInMb;
}