hour12 property

int get hour12

Implementation

int get hour12 {
  return hour > 12 ? hour - 12 : hour;
}