not method

Filter<CTX> not()

Creates a filter that matches the opposite of this filter.

The resulting filter matches when this filter doesn't match.

Implementation

Filter<CTX> not() => _NotFilter<CTX>(this);