isAtSameTime method

bool isAtSameTime(
  1. TimeOfDay other
)

Implementation

bool isAtSameTime(TimeOfDay other) =>
    hour == other.hour && minute == other.minute;