Where constructor

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

Implementation

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