GroupInfoEntity.create constructor

GroupInfoEntity.create({
  1. String? groupID,
  2. required String? groupName,
  3. required GroupTypeEnum? groupType,
  4. String? introduction,
})

创建群聊快速方法

Implementation

GroupInfoEntity.create({
  this.groupID,
  required this.groupName,
  required this.groupType,
  this.introduction,
});