nextMonth method

void nextMonth()

Advances to the next month.

Implementation

void nextMonth() {
  _currentDate = GregorianCalendar.addMonths(_currentDate, 1);
  notifyListeners();
}