currentDate property
DateTime
get
currentDate
The currentDate represents the current day (i.e. today).
This date will be highlighted in the day grid.
If null, the date of calendarDelegate.now() will be used.
Implementation
DateTime get currentDate {
return calendarDelegate.dateOnly(_currentDate ?? calendarDelegate.now());
}