toCountString method

String toCountString()

Implementation

String toCountString() {
  return this > 0 ? toString().padLeft(2, '0') : '0';
}