selectedDay property
The selected day of the TableCalendar. Initialises with DateTime.now().
Implementation
DateTime get selectedDay => _selectedDay;
Implementation
set selectedDay(DateTime day) {
_selectedDay = day.toDateOnly();
notifyListeners();
}