GroupInfo constructor

GroupInfo({
  1. required String groupID,
  2. String? groupName,
  3. String? notification,
  4. String? introduction,
  5. String? faceURL,
  6. String? ownerUserID,
  7. int? createTime,
  8. int? memberCount,
  9. int? status,
  10. String? creatorUserID,
  11. int? groupType,
  12. String? ex,
  13. int? needVerification,
  14. int? lookMemberInfo,
  15. int? applyMemberFriend,
  16. int? notificationUpdateTime,
  17. String? notificationUserID,
})

Implementation

GroupInfo({
  required this.groupID,
  this.groupName,
  this.notification,
  this.introduction,
  this.faceURL,
  this.ownerUserID,
  this.createTime,
  this.memberCount,
  this.status,
  this.creatorUserID,
  this.groupType,
  this.ex,
  this.needVerification,
  this.lookMemberInfo,
  this.applyMemberFriend,
  this.notificationUpdateTime,
  this.notificationUserID,
});