filter property

SearchFilter<T> filter
final

Method that returns the specific parameters intrinsic to a T instance.

For example, filter a person by its name & age parameters: filter: (person) => person.name, person.age.toString(),

Al parameters to filter through must be String instances.

Implementation

final SearchFilter<T> filter;