isSameMonth method

bool isSameMonth(
  1. DateTime other
)

Implementation

bool isSameMonth(DateTime other) {
  return year == other.year && month == other.month;
}