navigateToToday method

void navigateToToday()

Navigates the calendar to the current month and day.

Implementation

void navigateToToday() {
  _displayDate = DateTime.now();
  fetchEvents(_displayDate);
}