PaymentPagesCheckoutSessionShippingCost constructor

const PaymentPagesCheckoutSessionShippingCost({
  1. required int amountSubtotal,
  2. required int amountTax,
  3. required int amountTotal,
  4. ShippingRateOrId? shippingRate,
  5. List<LineItemsTaxAmount>? taxes,
})

PaymentPagesCheckoutSessionShippingCost

Implementation

const PaymentPagesCheckoutSessionShippingCost({
  required this.amountSubtotal,
  required this.amountTax,
  required this.amountTotal,
  this.shippingRate,
  this.taxes,
});