nextWeek method

void nextWeek()

Advances to the next week.

Implementation

void nextWeek() {
  _currentDate = _currentDate.add(const Duration(days: 7));
  notifyListeners();
}