Filterable class abstract

Interface for applying a Filter.

The interface only returns a future that indicates whether the filter operation was successful or if it failed. It does not provide the list of items that are filtered. This allows the trigger to not have a dependency on having to act on the results.

Implementers

Constructors

Filterable()

Properties

currentLimit int?
Max number of items requested on the last call to filter.
no setter
currentQuery Object?
The query passed in on the last call to filter.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

filter(Object filterQuery, {int? limit}) DisposableFuture<bool>
Takes in a query and a limit and applies the query to the entire list of options.
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