join method
Add a client to a room.
Implementation
@override
void join(String room, SocketClient client) {
_rooms.putIfAbsent(room, () => {}).add(client);
}
Add a client to a room.
@override
void join(String room, SocketClient client) {
_rooms.putIfAbsent(room, () => {}).add(client);
}