roomId property
String?
get
roomId
RoomId of the currently joined room.
Implementation
String? get roomId {
return _roomId;
}
set
roomId
(String? roomId)
Implementation
set roomId(String? roomId) {
if (_roomId != null) {
logger.w(
"RoomId is already set, Ignoring the new roomId, end this room and create a new room",
);
return;
}
_roomId = roomId;
}