FXSearchBar constructor

const FXSearchBar({
  1. Key? key,
  2. required TextEditingController controller,
  3. dynamic onChanged(
    1. String
    )?,
  4. bool? isDense,
  5. dynamic onDelete()?,
  6. String? hintText,
  7. double? hintSize,
})

Implementation

const FXSearchBar({
  Key? key,
  required this.controller,
  this.onChanged,
  this.isDense,
  this.onDelete,
  this.hintText,
  this.hintSize,
}) : super(key: key);