CustomDateFormField constructor

const CustomDateFormField({
  1. Key? key,
  2. TextEditingCController? controller,
  3. String? label,
  4. bool required = false,
  5. void onChange(
    1. DateTime? date
    )?,
  6. DateTime? firstDate,
  7. DateTime? lastDate,
})

Implementation

const CustomDateFormField({
  super.key,
  this.controller,
  this.label,
  this.required = false,
  this.onChange,
  this.firstDate,
  this.lastDate,
});