Filter.nor constructor

Filter.nor(
  1. List<Filter> filters
)

Combines the provided filters and matches the values not matched by all the filters.

Implementation

factory Filter.nor(List<Filter> filters) =>
    Filter._(operator: FilterOperator.nor, value: filters);