WhereClause constructor

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

Implementation

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