nextMonth method
void
nextMonth()
Advances to the next month.
Implementation
void nextMonth() {
_currentDate = GregorianCalendar.addMonths(_currentDate, 1);
notifyListeners();
}
Advances to the next month.
void nextMonth() {
_currentDate = GregorianCalendar.addMonths(_currentDate, 1);
notifyListeners();
}