TaxRateCreateOptions constructor

const TaxRateCreateOptions({
  1. bool? active,
  2. String? country,
  3. String? description,
  4. required String displayName,
  5. List<String>? expand,
  6. required bool inclusive,
  7. String? jurisdiction,
  8. Map<String, String>? metadata,
  9. required double percentage,
  10. String? state,
  11. TaxProductResourceLineItemTaxBreakdownTaxRateDetailsTaxType? taxType,
})

Implementation

const TaxRateCreateOptions({
  this.active,
  this.country,
  this.description,
  required this.displayName,
  this.expand,
  required this.inclusive,
  this.jurisdiction,
  this.metadata,
  required this.percentage,
  this.state,
  this.taxType,
});