navigateToNextMonth method

void navigateToNextMonth()

Navigates the calendar to the next month.

Implementation

void navigateToNextMonth() {
  _displayDate = DateTime(_displayDate.year, _displayDate.month + 1, 1);
  fetchEvents(_displayDate);
}