TSearchField constructor

TSearchField({
  1. Key? key,
  2. void onChanged(
    1. String text
    )?,
  3. void onSubmitted(
    1. String text
    )?,
  4. void onCleared()?,
  5. String hintText = 'Search...',
  6. bool autofocus = true,
})

Implementation

TSearchField({
  super.key,
  this.onChanged,
  this.onSubmitted,
  this.onCleared,
  this.hintText = 'Search...',
  this.autofocus = true,
});