typeString property

String typeString

Implementation

String get typeString {
  switch (type) {
    case ProClockType.countdown:
      return 'Countdown';
    case ProClockType.countto:
      return 'Countdown To';
    case ProClockType.elapsed:
      return 'Elapsed';
    default:
      return '';
  }
}