isBefore method

bool isBefore(
  1. TimeOfDay other
)

Implementation

bool isBefore(TimeOfDay other) =>
    hour < other.hour || (hour == other.hour && minute < other.minute);