EnterPreGroup static method

void EnterPreGroup()

进入上一个群组

Implementation

static void EnterPreGroup() async {
  Log.i(tag, "EnterPreGroup");
  if (checkIsOnline()) {
    if(checkIsInGroup(showToast: false)){
      if(checkHasOtherGroupExceptContact()){
        PlatformMethodInvokeHandler.invokeMethod("EnterPreGroup");
      }
    }else{
      if(checkHasGroupExceptContact()){
        PlatformMethodInvokeHandler.invokeMethod("EnterPreGroup");
      }
    }
  }
}