TaxRate constructor

const TaxRate({
  1. required bool active,
  2. String? country,
  3. required DateTime created,
  4. String? description,
  5. required String displayName,
  6. double? effectivePercentage,
  7. required String id,
  8. required bool inclusive,
  9. String? jurisdiction,
  10. TaxRateJurisdictionLevel? jurisdictionLevel,
  11. required bool livemode,
  12. Map<String, String>? metadata,
  13. required double percentage,
  14. String? state,
  15. TaxProductResourceTaxRateDetailsTaxType? taxType,
})

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,
});