updateTeamIntroduce static method
更新群介绍
Implementation
static Future<bool> updateTeamIntroduce(
String teamId, NIMTeamType type, String introduction) {
NIMUpdateTeamInfoParams params = NIMUpdateTeamInfoParams();
params.intro = introduction;
return _updateTeam(teamId, type, params);
}