correctFormatTime property

String correctFormatTime

Implementation

String get correctFormatTime {
  String t = this.toString();
  if (t.length < 2) {
    t = "0$t";
  }
  return t;
}