DatePickerTextField constructor

const DatePickerTextField({
  1. Key? key,
  2. required TextEditingController controller,
  3. String label = "Select Date",
  4. dynamic onDateSelected(
    1. DateTime
    )?,
})

Implementation

const DatePickerTextField({
  super.key,
  required this.controller,
  this.label = "Select Date",
  this.onDateSelected,
});