addRoom method

void addRoom(
  1. String room
)

Implementation

void addRoom(String room) {
  _rooms[room] ??= SimpleNetworkerPipe<T>();
}