Filter.and constructor

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

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

Implementation

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