ShippingRate constructor

const ShippingRate({
  1. required bool active,
  2. required DateTime created,
  3. ShippingRateDeliveryEstimate? deliveryEstimate,
  4. String? displayName,
  5. ShippingRateFixedAmount? fixedAmount,
  6. required String id,
  7. required bool livemode,
  8. required Map<String, String> metadata,
  9. CurrencyOptionTaxBehavior? taxBehavior,
  10. TaxCodeOrId? taxCode,
})

ShippingRate

Shipping rates describe the price of shipping presented to your customers and applied to a purchase. For more information, see [Charge for shipping](https://stripe.com/docs/payments/during-payment/charge-shipping).

Implementation

const ShippingRate({
  required this.active,
  required this.created,
  this.deliveryEstimate,
  this.displayName,
  this.fixedAmount,
  required this.id,
  required this.livemode,
  required this.metadata,
  this.taxBehavior,
  this.taxCode,
});