hasRoom static method

bool hasRoom(
  1. String room
)

Check if a room exists (has active clients).

Implementation

static bool hasRoom(String room) {
  return _manager.hasRoom(room);
}