SearchGroupMembersView constructor

const SearchGroupMembersView({
  1. required List<NeedSearch> searchData,
  2. required String searchHideText,
  3. Widget itemBuilder(
    1. BuildContext context,
    2. ChatUIKitProfile profile,
    3. String? searchKeyword
    )?,
  4. void onTap(
    1. BuildContext context,
    2. ChatUIKitProfile profile
    )?,
  5. ChatUIKitAppBarModel? appBarModel,
  6. bool enableAppBar = false,
  7. String? attributes,
  8. ChatUIKitViewObserver? viewObserver,
  9. Key? key,
})

Implementation

const SearchGroupMembersView({
  required this.searchData,
  required this.searchHideText,
  this.itemBuilder,
  this.onTap,
  this.appBarModel,
  this.enableAppBar = false,
  this.attributes,
  this.viewObserver,
  super.key,
});