NostrFilter constructor

const NostrFilter({
  1. List<String>? ids,
  2. List<String>? authors,
  3. List<int>? kinds,
  4. List<String>? e,
  5. List<String>? p,
  6. List<String>? t,
  7. DateTime? since,
  8. DateTime? until,
  9. int? limit,
  10. String? search,
  11. List<String>? a,
  12. Map<String, dynamic>? additionalFilters,
})

NostrFilter is a filter that can be used to match events.

Implementation

const NostrFilter({
  this.ids,
  this.authors,
  this.kinds,
  this.e,
  this.p,
  this.t,
  this.since,
  this.until,
  this.limit,
  this.search,
  this.a,
  this.additionalFilters,
});