afterOrEqual method

bool afterOrEqual(
  1. TimeOfDay other
)

Implementation

bool afterOrEqual(TimeOfDay other) {
  return this.compare(other) >= 0;
}