SearchDateField constructor

SearchDateField({
  1. Key? key,
  2. required Size size,
  3. String? value,
  4. DateTime? searchDate,
  5. void onchange_date(
    1. DateTime
    )?,
  6. String? hintText,
})

Implementation

SearchDateField({
  Key? key,
  required this.size,
  this.value,
  this.searchDate,
  this.onchange_date,
  this.hintText,
}) : super(key: key);