static String formattedSize(int bytes) { if (bytes < 1024.0) { return "$bytes bytes"; } else { final val = (bytes / 1024.0).toStringAsFixed(1); return "$val kb"; } }