nextMonth method

void nextMonth()

Implementation

void nextMonth() {
  assert(_selectedDate != null);
  _selectedDate = _selectedDate!.nextMonth;
  notifyListeners();
}