getClock method

int getClock()

The clock convention in use: 12 or 24 (hour).

Implementation

int getClock() {
  return int.parse(_clock ?? '12');
}