createChatThread method

Future<EMChatThread> createChatThread({
  1. required String name,
  2. required String messageId,
  3. required String parentId,
})

创建子区。

@note 所有群成员都可以调用。 子区创建成功后,会出现如下情况:

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;
  }
}