selectDate method

void selectDate(
  1. DateTime date
)

Programmatically selects a single date.

Implementation

void selectDate(DateTime date) {
  _monthlyProvider?.selectDate(date);
  _weeklyProvider?.toggleUserPicked(date);
  _horizontalProvider?.setSelectedDay(date);
}