andGroup static method

Filter andGroup(
  1. Iterable<Filter> filters
)

Returns the smallest representation of the "And" group of filters.

See implementation of _optimizedGroup for details;

Implementation

static Filter andGroup(Iterable<Filter> filters) =>
    _optimizedGroup(filters, FilterGroupType.And);