PeerStoreConfig constructor

const PeerStoreConfig({
  1. int maxPeers = 1000,
  2. Duration peerTTL = const Duration(hours: 24),
  3. Duration cleanupInterval = const Duration(minutes: 30),
})

Implementation

const PeerStoreConfig({
  this.maxPeers = 1000,
  this.peerTTL = const Duration(hours: 24),
  this.cleanupInterval = const Duration(minutes: 30),
});