value property

int value

Implementation

int get value {
  switch (this) {
    case ClockTimeFormat.twelveHours:
      return 12;
    case ClockTimeFormat.twentyFourHours:
      return 24;
  }
}