updateTeamIntroduce static method

Future<bool> updateTeamIntroduce(
  1. String teamId,
  2. NIMTeamType type,
  3. String introduction
)

更新群介绍

Implementation

static Future<bool> updateTeamIntroduce(
    String teamId, NIMTeamType type, String introduction) {
  NIMUpdateTeamInfoParams params = NIMUpdateTeamInfoParams();
  params.intro = introduction;
  return _updateTeam(teamId, type, params);
}