SearchFormField constructor

const SearchFormField({
  1. Key? key,
  2. dynamic onSubmit(
    1. String
    )?,
  3. dynamic onChange(
    1. String
    )?,
  4. dynamic onFocus(
    1. bool
    )?,
  5. String? searchHint,
})

Implementation

const SearchFormField({
  Key? key,
  this.onSubmit,
  this.onChange,
  this.onFocus,
  this.searchHint,
}) : super(key: key);