downloadSizeLabel property

String get downloadSizeLabel

Human-readable download size

Implementation

String get downloadSizeLabel {
  if (downloadSizeBytes <= 0) return '';
  final mb = downloadSizeBytes / (1024 * 1024);
  return '${mb.round()} MB';
}