createChatThread method
创建子区。
@note 所有群成员都可以调用。 子区创建成功后,会出现如下情况:
-
单设备登录时,子区所属群组的所有成员均会收到 EMChatThreadEventHandler.onChatThreadCreate 。
-
多端多设备登录时,各设备会收到 EMMultiDeviceEventHandler.onChatThreadEvent 回调。
Param name
要创建的子区的名称。长度不超过 64 个字符。
Param messageId
父消息 ID。
Param parentId
群组 ID。
Return 调用成功时,返回创建的子区对象;失败则抛出异常。
Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError。
Implementation
Future<EMChatThread> createChatThread({
required String name,
required String messageId,
required String parentId,
}) async {
Map req = {
"name": name,
"messageId": messageId,
"parentId": parentId,
};
Map result = await _channel.invokeMethod(
ChatMethodKeys.createChatThread,
req,
);
try {
EMError.hasErrorFromResult(result);
return EMChatThread.fromJson(result[ChatMethodKeys.createChatThread]);
} on EMError catch (e) {
throw e;
}
}