joinGroup method
加入群组
注意
工作群(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 V2TimCallback.fromJson(
formatJson(
await _channel.invokeMethod(
"joinGroup",
buildTimManagerParam(
{
"groupID": groupID,
"message": message,
"groupType": groupType,
},
),
),
),
);
}