DimensionFilter constructor

DimensionFilter({
  1. bool? caseSensitive,
  2. String? dimensionName,
  3. List<String>? expressions,
  4. bool? not,
  5. String? operator,
})

Implementation

DimensionFilter({
  this.caseSensitive,
  this.dimensionName,
  this.expressions,
  this.not,
  this.operator,
});