Query constructor

const Query(
  1. Object field, {
  2. Object? isEqualTo,
  3. Object? isNotEqualTo,
  4. Object? isLessThan,
  5. Object? isLessThanOrEqualTo,
  6. Object? isGreaterThan,
  7. Object? isGreaterThanOrEqualTo,
  8. Object? arrayContains,
  9. Object? arrayNotContains,
  10. Iterable<Object?>? arrayContainsAny,
  11. Iterable<Object?>? arrayNotContainsAny,
  12. Iterable<Object?>? whereIn,
  13. Iterable<Object?>? whereNotIn,
  14. bool? isNull,
})

Implementation

const Query(
  this.field, {
  this.isEqualTo,
  this.isNotEqualTo,
  this.isLessThan,
  this.isLessThanOrEqualTo,
  this.isGreaterThan,
  this.isGreaterThanOrEqualTo,
  this.arrayContains,
  this.arrayNotContains,
  this.arrayContainsAny,
  this.arrayNotContainsAny,
  this.whereIn,
  this.whereNotIn,
  this.isNull,
});