TaxRate constructor
const
TaxRate({
- required bool active,
- String? country,
- required DateTime created,
- String? description,
- required String displayName,
- double? effectivePercentage,
- required String id,
- required bool inclusive,
- String? jurisdiction,
- TaxRateJurisdictionLevel? jurisdictionLevel,
- required bool livemode,
- Map<
String, String> ? metadata, - required double percentage,
- String? state,
- TaxProductResourceTaxRateDetailsTaxType? taxType,
TaxRate
Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates)
Implementation
const TaxRate({
required this.active,
this.country,
required this.created,
this.description,
required this.displayName,
this.effectivePercentage,
required this.id,
required this.inclusive,
this.jurisdiction,
this.jurisdictionLevel,
required this.livemode,
this.metadata,
required this.percentage,
this.state,
this.taxType,
});