CommonSearchBar constructor

const CommonSearchBar(
  1. TextEditingController controller,
  2. GlobalKey<State<StatefulWidget>> globalKey,
  3. String hintText,
  4. dynamic onTextChanged(
    1. String
    ),
  5. VoidCallback onFilterTapped,
  6. bool showFilters,
  7. bool showFilterButton, {
  8. Key? key,
})

Implementation

const CommonSearchBar(
  this.controller,
  this.globalKey,
  this.hintText,
  this.onTextChanged,
  this.onFilterTapped,
  this.showFilters,
  this.showFilterButton,
  { Key? key }) : super(key: key);