CreateJoinRoomResult

data class CreateJoinRoomResult(val data: Any? = null, val success: Boolean)

Aggregates the result from attempting to create or join a room. Mirrors the Flutter SDK where the payload may be either a success response, an error response, or null when the request fails early.

Constructors

Link copied to clipboard
constructor(data: Any? = null, success: Boolean)

Properties

Link copied to clipboard
val data: Any? = null
Link copied to clipboard