isSameMonth method

bool isSameMonth(
  1. DayDart d
)

Implementation

bool isSameMonth(DayDart d) {
  return isSameYear(d) && $M == d.$M;
}