LineVatAmountDto constructor

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

Implementation

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