Calendar constructor

const Calendar({
  1. Key? key,
  2. DateTime? now,
  3. CalendarValue? value,
  4. required CalendarView view,
  5. required CalendarSelectionMode selectionMode,
  6. ValueChanged<CalendarValue?>? onChanged,
  7. bool isDateEnabled(
    1. DateTime date
    )?,
  8. DateStateBuilder? stateBuilder,
})

Implementation

const Calendar({
  super.key,
  this.now,
  this.value,
  required this.view,
  required this.selectionMode,
  this.onChanged,
  this.isDateEnabled,
  this.stateBuilder,
});