SearchBarInput constructor
      const
      SearchBarInput({ 
    
    
- Key? key,
- dynamic controller,
- ValueChanged<String> ? onChange,
- String hintText = 'Search',
- VoidCallback? onSearchPressed,
- String labelText = 'Search',
- bool showLabel = true,
Implementation
const SearchBarInput({
  super.key,
  this.controller,
  this.onChange,
  this.hintText = 'Search',
  this.onSearchPressed,
  this.labelText = 'Search',
  this.showLabel = true,
});