addChatRoomAdmin method

Future<void> addChatRoomAdmin(
  1. String roomId,
  2. String admin
)

Adds a chat room admin.

Only the chat room owner can call this method.

Param roomId The chat room ID.

Param admin The ID of the chat room admin to be added.

Throws A description of the exception. See ChatError.

Implementation

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