Filter constructor

Filter(
  1. int _filterType, [
  2. String? _attributeName,
  3. String? _assertionValue,
  4. List<Filter> _subFilters = const [],
])

Constructor

It is preferable to use one of the convenience methods (present, equals, substring, approx, greaterOrEquals, lessOrEquals) instead of directly using this constructor.

Implementation

Filter(this._filterType,
    [this._attributeName, this._assertionValue, this._subFilters = const []]);