Where class

A filter on a query. The operators are Firestore's own, spelled as the plugin spells them.

Constructors

Where(String field, String op, Object? value)
const
Where.arrayContains(String field, Object? value)
const
Where.arrayContainsAny(String field, List<Object?> values)
const
Where.equalTo(String field, Object? value)
const
Where.greaterThan(String field, Object? value)
const
Where.greaterThanOrEqualTo(String field, Object? value)
const
Where.lessThan(String field, Object? value)
const
Where.lessThanOrEqualTo(String field, Object? value)
const
Where.notEqualTo(String field, Object? value)
const
Where.notIn(String field, List<Object?> values)
const
Where.whereIn(String field, List<Object?> values)
const

Properties

field → String
final
hashCode → int
The hash code for this object.
no setterinherited
op → String
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
value → Object?
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited