EnterGroup static method

void EnterGroup(
  1. int groupId
)

进入群组

Implementation

static void EnterGroup(int groupId) async {
  Log.i(tag, "EnterGroup:$groupId");
  if (checkIsOnline()) {
    if(checkHasGroup(groupId)){
      PlatformMethodInvokeHandler.invokeMethod("EnterGroup", groupId);
    }
  }
}