getMegaBytes method
It returns the size of the file in bytes
Implementation
@override
String getMegaBytes(int data, {PrecisionValue? value}) {
return "${(data / _getDividerValue(2)).toStringAsFixed(_getPrecisionValue(value ?? _precisionValue))} MB";
}