removeLobbyPeer method

void removeLobbyPeer(
  1. String peerId
)

Removed Lobby PeerId from the lobby @param peerId - PeerId of the peer who joined the room

Implementation

void removeLobbyPeer(String peerId) {
  _lobbyPeers.remove(peerId);
  emit("lobby-peers-updated", lobbyPeerIds);
}