CalendarDatePicker2WithActionButtons constructor

const CalendarDatePicker2WithActionButtons({
  1. required List<DateTime?> value,
  2. required CalendarDatePicker2WithActionButtonsConfig config,
  3. ValueChanged<List<DateTime?>>? onValueChanged,
  4. ValueChanged<DateTime>? onDisplayedMonthChanged,
  5. Function? onCancelTapped,
  6. Function? onOkTapped,
  7. Key? key,
})

Implementation

const CalendarDatePicker2WithActionButtons({
  required this.value,
  required this.config,
  this.onValueChanged,
  this.onDisplayedMonthChanged,
  this.onCancelTapped,
  this.onOkTapped,
  Key? key,
}) : super(key: key);