Filter.or constructor

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

Combines the provided filters and matches the values matched by at least one of the filters.

Implementation

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