destroyChatRoom method

Future<void> destroyChatRoom(
  1. String roomId
)

~english Destroys a chat room.

Only the chat room owner can call this method.

Param roomId The chat room ID.

Throws A description of the exception. See EMError. ~end

~chinese 销毁聊天室。

仅聊天室所有者可调用此方法。

Param roomId 聊天室 ID。

Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。 ~end

Implementation

Future<void> destroyChatRoom(
  String roomId,
) async {
  Map req = {"roomId": roomId};
  Map result =
      await _channel.invokeMethod(ChatMethodKeys.destroyChatRoom, req);
  try {
    EMError.hasErrorFromResult(result);
  } on EMError catch (e) {
    throw e;
  }
}