Filter constructor

Filter({
  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. int? since,
  8. int? until,
  9. int? limit,
})

Default constructor.

Implementation

Filter({
  this.ids,
  this.authors,
  this.kinds,
  this.e,
  this.p,
  this.t,
  this.since,
  this.until,
  this.limit,
});