messageFilter property

Filter? messageFilter

The message query filters to use.

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

You can also filter other built-in channel fields.

Implementation

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

Allows for the change of message filters used for user queries.

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

Implementation

set messageFilter(Filter? value) => _activeMessageFilter = value;