nextMonth method
void
nextMonth()
Advances the calendar by one month.
Implementation
void nextMonth() {
final current = displayedMonth;
setMonth(DateTime(current.year, current.month + 1));
}
Advances the calendar by one month.
void nextMonth() {
final current = displayedMonth;
setMonth(DateTime(current.year, current.month + 1));
}