formatTimeUnit property

String get formatTimeUnit

Implementation

String get formatTimeUnit {
  return (this < 10) ? "0$this" : "$this";
}