SearchView constructor

const SearchView({
  1. Key? key,
  2. required List<SearchCategory> categories,
  3. required String title,
  4. RxChat? chat,
  5. bool selectable = true,
  6. bool enabled = true,
  7. String? submit,
  8. void onPressed(
    1. dynamic
    )?,
  9. void onSubmit(
    1. List<UserId> ids
    )?,
  10. VoidCallback? onBack,
  11. void onSelected(
    1. SearchViewResults? results
    )?,
})

Implementation

const SearchView({
  super.key,
  required this.categories,
  required this.title,
  this.chat,
  this.selectable = true,
  this.enabled = true,
  this.submit,
  this.onPressed,
  this.onSubmit,
  this.onBack,
  this.onSelected,
});