ComplexWhere<T> constructor

ComplexWhere<T>(
  1. Object _field, {
  2. Object? isEqualTo,
  3. Object? isLessThan,
  4. Object? isLessThanOrEqualTo,
  5. Object? isGreaterThan,
  6. Object? isGreaterThanOrEqualTo,
  7. Object? arrayContains,
  8. List<Object>? arrayContainsAny,
  9. List<Object>? whereIn,
  10. List<Object>? whereNotIn,
  11. bool? isNull,
})

Apply where operation to the queried data. Provide the field that the data is needed to be filtered. Other fields will specify how.

Same as Query.where. Look at firestore documentation for more.

Implementation

ComplexWhere(
  this._field, {
  this.isEqualTo,
  this.isLessThan,
  this.isLessThanOrEqualTo,
  this.isGreaterThan,
  this.isGreaterThanOrEqualTo,
  this.arrayContains,
  this.arrayContainsAny,
  this.whereIn,
  this.whereNotIn,
  this.isNull,
});