updateTeamInfo method

Future<NIMResult<void>> updateTeamInfo(
  1. String teamId,
  2. NIMTeamType teamType,
  3. NIMUpdateTeamInfoParams updateTeamInfoParams,
  4. 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);
}