isBeforeMonth method

bool isBeforeMonth(
  1. DayDart d
)

Implementation

bool isBeforeMonth(DayDart d) {
  return isSameOrBefore(d, DayUnits.y) && $M < d.$M;
}