Subtotal constructor

Subtotal({
  1. ItemType? type,
  2. SubtotalOpt? option,
  3. List<Operation>? operations,
  4. String? operator,
})

Implementation

Subtotal({
  this.type,
  this.option,
  this.operations,
  this.operator,
});