DatePickerTextField constructor
- Key? key,
- required TextEditingController controller,
- String label = "Select Date",
- dynamic onDateSelected()?,
Implementation
const DatePickerTextField({
super.key,
required this.controller,
this.label = "Select Date",
this.onDateSelected,
});