toKMBCount property

String get toKMBCount

Implementation

String get toKMBCount {
  if (this >= 1000 && this < 1000000) {
    return "${this ~/ 1000}K";
  }

  if (this >= 1000000 && this < 1000000000) {
    return "${this ~/ 1000000}M";
  }

  if (this >= 1000000000) {
    return "${this ~/ 1000000000}B";
  }

  return "$this";
}