toKCount property

String get toKCount

Implementation

String get toKCount {
  if (this >= 1000) {
    return "${this ~/ 1000}K";
  }

  return "$this";
}