SearchInput constructor

const SearchInput({
  1. Key? key,
  2. TextEditingController? controller,
  3. void onChanged(
    1. String
    )?,
  4. String hintText = 'Rechercher',
  5. IconData? suffixIcon,
  6. void onSuffixIconPressed()?,
})

Implementation

const SearchInput({
  super.key,
  this.controller,
  this.onChanged,
  this.hintText = 'Rechercher',
  this.suffixIcon,
  this.onSuffixIconPressed,
});