SearchTextField constructor

const SearchTextField({
  1. ValueChanged<String>? onChanged,
  2. ValueChanged<String>? onSubmitted,
  3. VoidCallback? onTap,
  4. Widget? suffixIcon,
  5. String? hintText,
  6. Key? key,
  7. String? initialText,
  8. bool autofocus = false,
})

Implementation

const SearchTextField({
  this.onChanged,
  this.onSubmitted,
  this.onTap,
  this.suffixIcon,
  this.hintText,
  super.key,
  this.initialText,
  this.autofocus = false,
});