NostrRequest constructor
NostrRequest({
- required List<
NostrFilter> filters, - String? subscriptionId,
NostrRequest is a request to subscribe to a set of events that match a set of filters with a given subscriptionId.
Implementation
NostrRequest({
required this.filters,
this.subscriptionId,
});