RDBFilterable<T> class

An item that helps with filtering objects from Firestore queries.

Inheritance

Constructors

RDBFilterable(Query query, Type type)

Properties

hashCode int
The hash code for this object.
no setterinherited
query Query
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type Type
no setterinherited

Methods

endAt(dynamic value, {String? field}) RDBFilterable<T>
Ends a query result at a specific value.
equalTo(dynamic value, {String? field}) RDBFilterable<T>
Filters results by equality.
fetch() Future<RDBQueryResult<T>>
Fetches the results of the query.
limitToFirst(int limit) RDBFilterable<T>
Limits the result to a certain number of items from the start.
limitToLast(int limit) RDBFilterable<T>
Limits the result to a certain number of items from the end.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
orderByChild(String field) RDBFilterable<T>
Orders a query by a specific child field.
orderByKey() RDBFilterable<T>
Orders a query by a specific key.
orderByValue() RDBFilterable<T>
Orders a query by a specific value.
startAt(dynamic value, {String? field}) RDBFilterable<T>
Starts a query result at a specific value.
toString() String
A string representation of this object.
inherited

Operators

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