nextDay method
void
nextDay()
Advances to the next day.
Implementation
void nextDay() {
_currentDate = _currentDate.add(const Duration(days: 1));
notifyListeners();
}
Advances to the next day.
void nextDay() {
_currentDate = _currentDate.add(const Duration(days: 1));
notifyListeners();
}