S360fSearchBar constructor

const S360fSearchBar({
  1. required String hintText,
  2. void onChanged(
    1. String
    )?,
  3. String? value,
  4. Color? backgroundColor,
  5. Key? key,
})

Implementation

const S360fSearchBar({
  required this.hintText,
  this.onChanged,
  this.value,
  this.backgroundColor,
  super.key,
});