lobbyPeersMap property

Map<String, dynamic> get lobbyPeersMap

Get the lobby peers in the form of map

Implementation

Map<String, dynamic> get lobbyPeersMap => _lobbyPeers;
set lobbyPeersMap (Map<String, dynamic> peers)

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);
}