data_size 0.2.0
data_size: ^0.2.0 copied to clipboard
π Customizable data size (bit & byte) formatting for interfacing with the user
import 'package:data_size/data_size.dart';
// ignore_for_file: avoid_print
void main() {
print(12345.formatByteSize()); // "12.35βkB"
print(12345.formatByteSize(precision: 0)); // "12βkB"
print(12345.formatByteSize(prefix: Prefix.binary)); // "12.06βKiB"
print(12345.formatBitSize()); // "12.35βkb"
}