QueryTransformer mixin

This will will transform one type of Query to another type of Query.

As a example, if you got a Query that will return the whole collection, you can transform it to a Query that will return only 5 values, using the Query.limit

To learn more on how to use this in an application, look at FirebaseRepository.query.

Mixin Applications

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
transform(Query<Object?> q) → Query<Object?>
Override this method to implement the way you want to transform the given Query q.

Operators

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