InvoicePreview constructor

const InvoicePreview({
  1. required String docType,
  2. required String invoiceDate,
  3. required String taxScheme,
  4. required String taxCountry,
  5. required String priceMode,
  6. required InvoiceTotals totals,
  7. String? dueDate,
  8. String? customerId,
  9. String? taxSchemeReason,
  10. String? reverseChargeReason,
  11. String language = 'de',
  12. String? brandId,
  13. String? brandName,
  14. EInvoiceStatus? einvoice,
})

Implementation

const InvoicePreview({
  required this.docType,
  required this.invoiceDate,
  required this.taxScheme,
  required this.taxCountry,
  required this.priceMode,
  required this.totals,
  this.dueDate,
  this.customerId,
  this.taxSchemeReason,
  this.reverseChargeReason,
  this.language = 'de',
  this.brandId,
  this.brandName,
  this.einvoice,
});