Filter.and constructor

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

Record must match all of the given filters.

If you only have two filters, you can also write filter1 & filter2.

Implementation

factory Filter.and(List<Filter> filters) =>
    SembastCompositeFilter.and(filters);