Removes all values stored for a peer.
@override Future<void> removePeer(PeerId id) async { // Using synchronous lock to match interface await _lock.synchronized(() async { _ds.remove(id.toString()); }); }