BillDiscountDto constructor

BillDiscountDto(
  1. {String? id,
  2. String? barcode,
  3. BillDiscountBarcodeType? barcodeType,
  4. String? name,
  5. String? additionalText,
  6. double? value,
  7. required BillDiscountType type,
  8. List<BillDiscountVatAmountDto>? vatAmounts,
  9. double? fullAmountInclVat,
  10. String? equivalentValue}
)

Implementation

BillDiscountDto({
  this.id,
  this.barcode,
  this.barcodeType,
  this.name,
  this.additionalText,
  this.value,
  required this.type,
  this.vatAmounts,
  this.fullAmountInclVat,
  this.equivalentValue,
});