RoomInfo constructor

RoomInfo(
  1. String roomName,
  2. String token,
  3. String url,
  4. String loginUID,
  5. String creatorUID,
)

Creates a new RoomInfo instance.

roomName - The name of the room. token - The access token for authentication. url - The LiveKit server URL. loginUID - The UID of the current logged-in user. creatorUID - The UID of the room creator.

Implementation

RoomInfo(this.roomName, this.token, this.url, this.loginUID, this.creatorUID);