getYottaBytes method
It returns the size of the file in bytes
Implementation
@override
String getYottaBytes(int data, {PrecisionValue? value}) {
num r = data / _getDividerValue(7);
return "${r.toStringAsFixed(_getPrecisionValue(value ?? _precisionValue))} YB";
}