isSameMonth method Null safety
Returns true if the two DateTime objects have the same month and year, or are both null.
Implementation
static bool isSameMonth(DateTime? dateA, DateTime? dateB) {
return
dateA?.year == dateB?.year &&
dateA?.month == dateB?.month;
}