InvoiceLineItem constructor
InvoiceLineItem({})
Implementation
InvoiceLineItem({
required this.lineId,
required this.name,
required this.unitPrice,
required this.quantity,
this.unitCode = 'C62',
double? vatPercent,
this.vatCategoryCode = 'S',
this.vatExemptionReason,
}) : vatPercent = vatPercent ?? FacturSimpleConfig.defaultVat;