DateInput constructor

const DateInput({
  1. Key? key,
  2. String? hintText,
  3. String? labelText,
  4. DateTime? savedSelectedDate,
  5. Widget? prefixIcon,
  6. Widget? suffixIcon,
  7. String? dateFormat,
  8. dynamic onDatePicked(
    1. DateTime
    )?,
  9. TextStyle? labelStyle,
  10. TextStyle? textStyle,
  11. StrutStyle? strutStyle,
  12. bool isEnabled = true,
})

Implementation

const DateInput({
  super.key,
  this.hintText,
  this.labelText,
  this.savedSelectedDate,
  this.prefixIcon,
  this.suffixIcon,
  this.dateFormat,
  this.onDatePicked,
  this.labelStyle,
  this.textStyle,
  this.strutStyle,
  this.isEnabled = true,
});