TaxLine constructor

TaxLine({
  1. double? amount,
  2. required String detailType,
  3. required TaxLineDetail taxLineDetail,
})

Implementation

TaxLine({
  this.amount, required this.detailType, required this.taxLineDetail
});