filter property

Filter? filter

The query filters to use.

You can query on any of the custom fields you've defined on the Member.

You can also filter other built-in channel fields.

Implementation

final Filter? filter;
void filter=(Filter? value)

Allows for the change of filters used for member queries.

Use this if you need to support runtime filter changes, through custom filters UI.

Implementation

set filter(Filter? value) => _activeFilter = value;