getPeerKeyValues method
Implementation
Future<List<ExpiringAddr>?> getPeerKeyValues(String peerKey) async {
return await _lock.synchronized(() async {
return _addrs[peerKey]?.values.toList();
});
}
Future<List<ExpiringAddr>?> getPeerKeyValues(String peerKey) async {
return await _lock.synchronized(() async {
return _addrs[peerKey]?.values.toList();
});
}