orGroup static method

Filter orGroup(
  1. Iterable<Filter> filters
)

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

See implementation of _optimizedGroup for details;

Implementation

static Filter orGroup(Iterable<Filter> filters) =>
    _optimizedGroup(filters, FilterGroupType.Or);