updateBeInviteMode method

void updateBeInviteMode(
  1. String teamId,
  2. bool needAgree
)

Implementation

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