InvoiceTotal constructor
Constructs an InvoiceTotal with the provided amounts.
subtotal
is the total amount before VAT is added.
vatAmount
is the total VAT amount.
grandTotal
is the total amount after VAT is included.
Implementation
InvoiceTotal({
required this.subtotal,
required this.vatAmount,
required this.grandTotal,
});