DiscountLineVatAmountDto constructor

DiscountLineVatAmountDto(
  1. {required double percentage,
  2. required double inclVat,
  3. double? exclVat,
  4. double? vat,
  5. List<int>? relatedLines,
  6. String? groupId}
)

Implementation

DiscountLineVatAmountDto({
  required this.percentage,
  required this.inclVat,
  this.exclVat,
  this.vat,
  this.relatedLines,
  this.groupId,
});