RDBFilterable<T> class
An item that helps with filtering objects from Firestore queries.
- Inheritance
-
- Object
- Filterable<
Query> - RDBFilterable
Constructors
- RDBFilterable(Query query, Type type)
Properties
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