isAm static method

bool isAm(
  1. TimeOfDay time
)

Implementation

static bool isAm(TimeOfDay time) {
  return time.hour < 12;
}