OrGroup constructor

const OrGroup(
  1. List<Filter> filters
)

Create a logical OR filter group.

Matches when any of the filters matches.

Implementation

const OrGroup(this.filters)
    : assert(filters.length > 0, 'Or filters must not be empty');