CustomerTaxLocation constructor

const CustomerTaxLocation({
  1. required String country,
  2. required CustomerTaxLocationSource source,
  3. String? state,
})

The customer's location as identified by Stripe Tax.

Implementation

const CustomerTaxLocation({
  required this.country,
  required this.source,
  this.state,
});