CreateGroupInfo constructor

CreateGroupInfo({
  1. required String groupName,
  2. String? groupDesc,
  3. String? groupAvatar,
  4. GroupCreateCallback? onGroupCreateCallback,
  5. List<ChatUIKitProfile>? inviteMembers,
  6. int maxCount = 1000,
  7. GroupStyle style = GroupStyle.PrivateMemberCanInvite,
  8. bool inviteNeedConfirm = false,
  9. String? ext,
})

Implementation

CreateGroupInfo({
  required this.groupName,
  this.groupDesc,
  this.groupAvatar,
  this.onGroupCreateCallback,
  this.inviteMembers,
  this.maxCount = 1000,
  this.style = GroupStyle.PrivateMemberCanInvite,
  this.inviteNeedConfirm = false,
  this.ext,
});