FilterGroup.and constructor

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

Create a logical AND filter group.

Matches when all filters match.

Implementation

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