NostrRelays constructor

NostrRelays({
  1. required NostrLogger logger,
})

This class is responsible for all the relays related operations.

Implementation

NostrRelays({
  required this.logger,
}) {
  nostrRegistry = NostrRegistry(logger: logger);
}