isSameDay method

bool isSameDay(
  1. DayDart d
)

Implementation

bool isSameDay(DayDart d) {
  return isSameMonth(d) && $D == d.$D;
}