Expression constructor

Expression({
  1. List<Expression>? and,
  2. CostCategoryValues? costCategories,
  3. DimensionValues? dimensions,
  4. Expression? not,
  5. List<Expression>? or,
  6. TagValues? tags,
})

Implementation

Expression({
  this.and,
  this.costCategories,
  this.dimensions,
  this.not,
  this.or,
  this.tags,
});