isNextMonth static method
Check if a date is next month
Implementation
static bool isNextMonth(DateTime date) {
final now = DateTime.now();
final nextMonth = now.month == 12
? DateTime(now.year + 1)
: DateTime(now.year, now.month + 1);
return isSameMonth(date, nextMonth);
}