CalendarController constructor

CalendarController({
  1. required bool isPeriodSelect,
  2. List<DateTime>? targetDate,
  3. dynamic onChanged(
    1. List<DateTime>
    )?,
  4. DateTime? activeMinDate,
  5. DateTime? activeMaxDate,
})

Implementation

CalendarController({
  required this.isPeriodSelect,
  this.targetDate,
  this.onChanged,
  this.activeMinDate,
  this.activeMaxDate,
});