joinGroup method

  1. @override
Future<V2TimCallback> joinGroup({
  1. required String groupID,
  2. required String message,
  3. String? groupType,
})
override

加入群组

注意

工作群(Work):不能主动入群,只能通过群成员调用 V2TIMManager.getGroupManager().inviteUserToGroup() 接口邀请入群。
公开群(Public):申请入群后,需要管理员审批,管理员在收到 V2TIMGroupListener -> onReceiveJoinApplication 回调后调用 V2TIMManager.getGroupManager().getGroupApplicationList() 接口处理加群请求。
其他群:可以直接入群。
注意:当在web端时,加入直播群时groupType字段必填

Implementation

@override
Future<V2TimCallback> joinGroup({
  required String groupID,
  required String message,
  String? groupType,
}) async {
  return await _v2timGroupManager.joinGroup({"groupID": groupID, "message": message, "groupType": groupType});
}