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