ContactListView constructor

const ContactListView({
  1. Key? key,
  2. required List<ContactInfo> contactList,
  3. ContactUIConfig? config,
  4. bool isCanSelectMemberItem = false,
  5. ContactItemSelect? onSelectedMemberItemChange,
  6. List<TopListItem>? topList,
  7. TopListItemBuilder? topListItemBuilder,
  8. List<ContactInfo>? selectedUser,
  9. int? maxSelectNum,
})

Implementation

const ContactListView(
    {Key? key,
    required this.contactList,
    this.config,
    this.isCanSelectMemberItem = false,
    this.onSelectedMemberItemChange,
    this.topList,
    this.topListItemBuilder,
    this.selectedUser,
    this.maxSelectNum})
    : super(key: key);