lobbyPeersMap property
Get the lobby peers in the form of map
Implementation
Map<String, dynamic> get lobbyPeersMap => _lobbyPeers;
Set lobby peers in the form of map
NOTE: This function is an internal function of the SDK, Used to emit evnts based on changes
Implementation
set lobbyPeersMap(Map<String, dynamic> peers) {
_lobbyPeers = peers;
emit('lobby-peers-updated', lobbyPeerIds);
}