GroupInfoEntity.update constructor

GroupInfoEntity.update({
  1. required String? groupID,
  2. String? groupName,
  3. String? notification,
  4. String? introduction,
  5. String? faceUrl,
  6. bool? allMuted,
  7. GroupAddOptEnum? groupAddOpt,
  8. Map<String, String>? customInfo,
})

更新群聊信息快速方法

Implementation

GroupInfoEntity.update({
  required this.groupID,
  this.groupName,
  this.notification,
  this.introduction,
  this.faceUrl,
  this.allMuted,
  this.groupAddOpt,
  this.customInfo,
});