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