NostrRequest constructor

NostrRequest({
  1. required List<NostrFilter> filters,
  2. 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,
});