Subtotal constructor

Subtotal({
  1. required ItemType type,
  2. List<Operation>? operations,
})

Implementation

Subtotal({
  required this.type,
  this.operations,
});