BillDiscountDto constructor
- {String? id,
- String? barcode,
- BillDiscountBarcodeType? barcodeType,
- String? name,
- String? additionalText,
- double? value,
- required BillDiscountType type,
- List<
BillDiscountVatAmountDto> ? vatAmounts, - double? fullAmountInclVat,
- 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,
});