updateBeInviteMode static method
更新入群模式
Implementation
static Future<bool> updateBeInviteMode(
String teamId, NIMTeamType type, bool isNeed) {
NIMUpdateTeamInfoParams params = NIMUpdateTeamInfoParams();
params.agreeMode = isNeed
? NIMTeamAgreeMode.agreeModeAuth
: NIMTeamAgreeMode.agreeModeNoAuth;
return _updateTeam(teamId, type, params);
}