TaxIdentifier constructor

TaxIdentifier(
  1. {String? entity,
  2. String? issuingCountry,
  3. String? taxId,
  4. String? taxIdType}
)

Implementation

TaxIdentifier({
  this.entity,
  this.issuingCountry,
  this.taxId,
  this.taxIdType,
}) : super();