TaxDetails constructor

TaxDetails({
  1. required String amount,
  2. required String percent,
  3. required String currency,
  4. required String taxableAmount,
  5. TaxCategoryCode? code,
  6. TaxSchemeCode? taxSchemeCode,
})

Constructor to initialize the TaxDetails object with required tax information.

Implementation

TaxDetails({
  required this.amount,
  required this.percent,
  required this.currency,
  required this.taxableAmount,
  this.code,
  this.taxSchemeCode,
});