RelaySet constructor

RelaySet({
  1. required String name,
  2. required String pubKey,
  3. int relayMinCountPerPubkey = 0,
  4. required Map<String, List<PubkeyMapping>> relaysMap,
  5. List<NotCoveredPubKey> notCoveredPubkeys = const [],
  6. required RelayDirection direction,
  7. bool fallbackToBootstrapRelays = true,
})

Implementation

RelaySet({
  required this.name,
  required this.pubKey,
  this.relayMinCountPerPubkey = 0,
  required this.relaysMap,
  this.notCoveredPubkeys = const [],
  required this.direction,
  this.fallbackToBootstrapRelays = true
});