SearchableTextBox constructor

const SearchableTextBox({
  1. Key? key,
  2. required List searchables,
  3. required dynamic onSelected(
    1. dynamic
    ),
  4. String? hintText,
  5. VoidCallback? onTapped,
  6. VoidCallback? onClear,
  7. dynamic onChanged(
    1. String
    )?,
  8. double? searchBoxHeight,
  9. double? searchBoxWidth,
  10. Color? searchBarBgColor,
  11. Color? borderSideColor,
})

Implementation

const SearchableTextBox(
    {super.key,
    required this.searchables,
    required this.onSelected,
    this.hintText,
    this.onTapped,
    this.onClear,
    this.onChanged,
    this.searchBoxHeight,
    this.searchBoxWidth,
    this.searchBarBgColor,
    this.borderSideColor});