ShippingRateCreateOptions constructor

const ShippingRateCreateOptions({
  1. SessionDeliveryEstimate? deliveryEstimate,
  2. required String displayName,
  3. List<String>? expand,
  4. SessionFixedAmount? fixedAmount,
  5. Map<String, String>? metadata,
  6. ShippingRateCurrencyOptionTaxBehavior? taxBehavior,
  7. String? taxCode,
})

Implementation

const ShippingRateCreateOptions({
  this.deliveryEstimate,
  required this.displayName,
  this.expand,
  this.fixedAmount,
  this.metadata,
  this.taxBehavior,
  this.taxCode,
});