isSameMonthAs method

bool isSameMonthAs(
  1. DateTime other
)

Checks if this date is the same month as other

Implementation

bool isSameMonthAs(DateTime other) {
  return DateComparisons.isSameMonth(this, other);
}