format property

String get format

Implementation

String get format {
  switch (timeFormat) {
    case TimeFormat.timeAndSeconds:
      return timeAndSeconds;
    case TimeFormat.yearMonthDayAndTime:
      return yearMonthDayAndTime;
    case null:
      return timeAndSeconds;
  }
}