Nostr constructor
Nostr({
- NostrDebugOptions? debugOptions,
This class is responsible for handling the connection to all relays.
Implementation
factory Nostr({
NostrDebugOptions? debugOptions,
}) {
// utils.log("A Nostr instance created successfully.");
return Nostr._(
debugOptions: debugOptions,
);
}