kisSameYear method

bool kisSameYear(
  1. DateTime d2
)

判断是否是同一年

Implementation

bool kisSameYear(DateTime d2) {
  return year == d2.year;
}