FilterGroup.xor constructor

const FilterGroup.xor(
  1. List<FilterOperation> filters
)

Create a logical XOR filter group.

Matches when exactly one of the filters matches.

Implementation

const FilterGroup.xor(this.filters)
    : type = FilterGroupType.xor,
      super._();