timeOfDayIsBefore static method
Implementation
static bool timeOfDayIsBefore(TimeOfDay a, TimeOfDay b) {
if (a.hour == b.hour) {
if (a.minute < b.minute) {
return true;
}
return false;
}
if (a.hour < b.hour) {
return true;
}
return false;
}