returnFormattedCount function

String returnFormattedCount(
  1. int count
)

Implementation

String returnFormattedCount(int count) {
  return (count > 99) ? "99+" : count.toString();
}