DataDto constructor
DataDto(- {String? currency,
- required double fullAmountInclVat,
- List<PaymentTypeInformationDto>? paymentTypes,
- List<DataVatAmountDto>? vatAmounts,
- List<LineBaseDto>? lines,
- int? positionCount,
- List<BillDiscountDto>? discounts,
- List<WarrantyDto>? warranties,
- double? fullAmountInclVatBeforeDiscounts,
- double? tip,
- String? equivalentValueName,
- String? fullEquivalentValue}
)
Implementation
DataDto({
this.currency,
required this.fullAmountInclVat,
this.paymentTypes,
this.vatAmounts,
this.lines,
this.positionCount,
this.discounts,
this.warranties,
this.fullAmountInclVatBeforeDiscounts,
this.tip,
this.equivalentValueName,
this.fullEquivalentValue,
});