FilterCriteria constructor

FilterCriteria({
  1. bool? excludeChats,
  2. String? from,
  3. bool? hasAttachment,
  4. String? negatedQuery,
  5. String? query,
  6. int? size,
  7. String? sizeComparison,
  8. String? subject,
  9. String? to,
})

Implementation

FilterCriteria({
  this.excludeChats,
  this.from,
  this.hasAttachment,
  this.negatedQuery,
  this.query,
  this.size,
  this.sizeComparison,
  this.subject,
  this.to,
});