updateTeamInfo method
- String teamId,
- NIMTeamType teamType,
- NIMUpdateTeamInfoParams updateTeamInfoParams,
- NIMAntispamConfig? antispamConfig
更新群组
@param teamId 群组Id @param teamType 群组类型 @param updateTeamInfoParams 更新参数 @param antispamConfig 反垃圾配置
Implementation
Future<NIMResult<void>> updateTeamInfo(
String teamId,
NIMTeamType teamType,
NIMUpdateTeamInfoParams updateTeamInfoParams,
NIMAntispamConfig? antispamConfig) async {
return _platform.updateTeamInfo(
teamId, teamType, updateTeamInfoParams, antispamConfig);
}