NostrEventsStream constructor

const NostrEventsStream({
  1. required Stream<ReceivedNostrEvent> stream,
  2. required String subscriptionId,
  3. required NostrRequest request,
})

Represents a holde class for the stream of nostr events and the subscription id.

Implementation

const NostrEventsStream({
  required this.stream,
  required this.subscriptionId,
  required this.request,
});