Filter constructor

Filter({
  1. List<String>? ids,
  2. List<String>? authors,
  3. List<int>? kinds,
  4. List<String>? eTags,
  5. List<String>? pTags,
  6. List<String>? tTags,
  7. int? since,
  8. int? until,
  9. int? limit,
})

Implementation

Filter(
    {this.ids,
    this.authors,
    this.kinds,
    this.eTags,
    this.pTags,
    this.tTags,
    this.since,
    this.until,
    this.limit});