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