selectedDay property

DateTime selectedDay

The selected day of the TableCalendar. Initialises with DateTime.now().

Implementation

DateTime get selectedDay => _selectedDay;
void selectedDay=(DateTime day)

Implementation

set selectedDay(DateTime day) {
  _selectedDay = day.toDateOnly();
  notifyListeners();
}