FilterListRepository<T, F> class abstract interface

FilterListRepository extends a ListRepository with filtering capabilities.

T - the type of returned items. F - the filter type. It can be just a String for queries as well as any object when filtering is more sophisticated.

Implemented types

Constructors

FilterListRepository()

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

getAll() Future<List<T>>
Retrieves all items.
inherited
getBy(F filter) Future<List<T>>
Retrieves items matching the given filter.
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