TaxDetails constructor
TaxDetails({
- required String amount,
- required String percent,
- required String currency,
- required String taxableAmount,
- TaxCategoryCode? code,
- 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,
});