invoke

operator fun invoke(): RoomContainer

Calls the invoke operator to retrieve the singleton instance of the RoomContainer.

Return

The singleton instance of the RoomContainer.

Example:

// Using invoke() to retrieve the RoomContainer instance
val roomContainer = RoomContainer() // Equivalent to RainbowSdk().roomContainer()

// Accessing services or functionalities using the retrieved instance
roomContainer.someServiceMethod()