nextMonth method

void nextMonth()

Advances the calendar by one month.

Implementation

void nextMonth() {
  final current = displayedMonth;
  setMonth(DateTime(current.year, current.month + 1));
}