isSameHour method

bool isSameHour(
  1. DayDart d
)

Implementation

bool isSameHour(DayDart d) {
  return isSameDay(d) && $h == d.$h;
}