FilterBuilder<T> class

A helper class to build filter queries.

See Filter for more details.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

build() Filter
Generates the Filter that can be passed to API methods.
endAt(T value) FilterBuilder<T>
Only returns results considered less or equal to value
equalTo(T value) FilterBuilder<T>
Only returns results considered equal to value
limitToFirst(int count) FilterBuilder<T>
Limits query results to the first count elements
limitToLast(int count) FilterBuilder<T>
Limits query results to the last count elements
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
startAt(T value) FilterBuilder<T>
Only returns results considered greater or equal to value
toString() String
A string representation of this object.
inherited

Operators

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