formattedSize static method

String formattedSize(
  1. int bytes
)

Implementation

static String formattedSize(int bytes) {

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

}