nextDay method

void nextDay()

Advances to the next day.

Implementation

void nextDay() {
  _currentDate = _currentDate.add(const Duration(days: 1));
  notifyListeners();
}