leaveRoom method

Future<DynamiteResponse<RoomLeaveRoomResponseApplicationJson, void>> leaveRoom({
  1. required String token,
  2. RoomLeaveRoomApiVersion? apiVersion,
  3. bool? oCSAPIRequest,
})

Leave a room.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • apiVersion Defaults to "v4".
  • token Token of the room.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Successfully left the room

See:

Implementation

Future<_i1.DynamiteResponse<RoomLeaveRoomResponseApplicationJson, void>> leaveRoom({
  required String token,
  RoomLeaveRoomApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final _request = $leaveRoom_Request(
    token: token,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
  );
  final _response = await _rootClient.httpClient.send(_request);

  final _serializer = $leaveRoom_Serializer();
  final _rawResponse =
      await _i1.ResponseConverter<RoomLeaveRoomResponseApplicationJson, void>(_serializer).convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}