updateBeInviteMode method
Implementation
void updateBeInviteMode(String teamId, bool needAgree) {
TeamRepo.updateBeInviteMode(teamId, NIMTeamType.typeNormal, needAgree)
.then((value) {
if (value) {
agreeMode = needAgree;
notifyListeners();
}
});
}