DataDto constructor

DataDto(
  1. {String? currency,
  2. required double fullAmountInclVat,
  3. List<PaymentTypeInformationDto>? paymentTypes,
  4. List<DataVatAmountDto>? vatAmounts,
  5. List<LineBaseDto>? lines,
  6. int? positionCount,
  7. List<BillDiscountDto>? discounts,
  8. List<WarrantyDto>? warranties,
  9. double? fullAmountInclVatBeforeDiscounts,
  10. double? tip,
  11. String? equivalentValueName,
  12. 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,
});