SearchResultWidget constructor

const SearchResultWidget({
  1. Key? key,
  2. required SearchStore searchStore,
  3. required String keyword,
  4. OnContactSelect? onContactSelect,
  5. OnGroupSelect? onGroupSelect,
  6. OnConversationSelect? onConversationSelect,
  7. OnMessageSelect? onMessageSelect,
})

Implementation

const SearchResultWidget({
  super.key,
  required this.searchStore,
  required this.keyword,
  this.onContactSelect,
  this.onGroupSelect,
  this.onConversationSelect,
  this.onMessageSelect,
});