p2pPeerDesc method

TopicSubscription? p2pPeerDesc()

Get description of the p2p peer from subscription cache

Implementation

TopicSubscription? p2pPeerDesc() {
  if (!isP2P()) {
    return null;
  }
  return _users[name];
}