isLessThan method

bool isLessThan(
  1. TimeOfDay other
)

Implementation

bool isLessThan(TimeOfDay other) {
  return this.toDouble() < other.toDouble();
}