room property

RoomClient get room

Implementation

RoomClient get room {
  final r = _room;
  if (r == null) {
    throw StateError('Room is not started');
  }
  return r;
}