LineDiscountVatAmountDto constructor

LineDiscountVatAmountDto(
  1. {required double percentage,
  2. required double inclVat,
  3. double? exclVat,
  4. double? vat,
  5. String? groupId}
)

Implementation

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