TaxCode constructor

const TaxCode({
  1. required String description,
  2. required String id,
  3. required String name,
})

TaxProductResourceTaxCode

[Tax codes](https://stripe.com/docs/tax/tax-categories) classify goods and services for tax purposes.

Implementation

const TaxCode({
  required this.description,
  required this.id,
  required this.name,
});