and static method

Filter and(
  1. List<Filter> filters
)

Creates a Filter that matches entries that matches all of the filters.

Implementation

static Filter and(List<Filter> filters) =>
    Filter(TYPE_AND, null, null, filters);