Filter.and constructor

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

Record must match all of the given filters.

Implementation

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