isBeforeHour method

bool isBeforeHour(
  1. DayDart d
)

Implementation

bool isBeforeHour(DayDart d) {
  return isSameOrBefore(d, DayUnits.D) && $h < d.$h;
}