Checks if the current date is in the same month as other
other
bool isSameMonth(DateTime other) => year == other.year && month == other.month;