EnterNextGroup static method
void
EnterNextGroup()
进入下一个群组
Implementation
static void EnterNextGroup() async {
Log.i(tag, "EnterNextGroup");
if (checkIsOnline()) {
if(checkIsInGroup(showToast: false)){
if(checkHasOtherGroupExceptContact()){
PlatformMethodInvokeHandler.invokeMethod("EnterNextGroup");
}
}else{
if(checkHasGroupExceptContact()){
PlatformMethodInvokeHandler.invokeMethod("EnterNextGroup");
}
}
}
}