CustomCalendar constructor
const
CustomCalendar({
- Key? key,
- required TextEditingController controller,
- required VoidCallback onClose,
- Color? selectedColor,
- required DateTime? initialDate,
- DateTime? minDate,
- DateTime? maxDate,
- dynamic onSelectionChanged(
- DateRangePickerSelectionChangedArgs
Implementation
const CustomCalendar({
super.key,
required this.controller,
required this.onClose,
this.selectedColor,
required this.initialDate,
this.minDate,
this.maxDate,
this.onSelectionChanged,
});