SingleInvoiceLine constructor

const SingleInvoiceLine({
  1. String? orderLineId,
  2. String? deliveryNoteLineId,
  3. String? itemName,
  4. String? itemEanCode,
  5. String? periodFromDate,
  6. String? periodToDate,
  7. double? invoicedQuantity,
})

Implementation

const SingleInvoiceLine({
  this.orderLineId,
  this.deliveryNoteLineId,
  this.itemName,
  this.itemEanCode,
  this.periodFromDate,
  this.periodToDate,
  this.invoicedQuantity,
});