formattedSize property
String
get
formattedSize
Implementation
String get formattedSize {
if (size < 1024) return '$size B';
if (size < 1024 * 1024) return '${(size / 1024).toStringAsFixed(1)} KB';
if (size < 1024 * 1024 * 1024)
return '${(size / (1024 * 1024)).toStringAsFixed(1)} MB';
return '${(size / (1024 * 1024 * 1024)).toStringAsFixed(1)} GB';
}