kisSameMonth method

bool kisSameMonth(
  1. DateTime d2
)

判断是否是同一月

Implementation

bool kisSameMonth(DateTime d2) {
  return year == d2.year && month == d2.month;
}