getPeerKeys method
Implementation
Future<Map<String, ExpiringAddr>?> getPeerKeys(String peerKey) async {
return await _lock.synchronized(() async {
return _addrs[peerKey];
});
}
Future<Map<String, ExpiringAddr>?> getPeerKeys(String peerKey) async {
return await _lock.synchronized(() async {
return _addrs[peerKey];
});
}