SourceShipping constructor

const SourceShipping({
  1. required SessionShippingAddress address,
  2. String? carrier,
  3. String? name,
  4. String? phone,
  5. String? trackingNumber,
})

order_shipping

Shipping address for the order. Required if any of the SKUs are for products that have `shippable` set to true.

Implementation

const SourceShipping({
  required this.address,
  this.carrier,
  this.name,
  this.phone,
  this.trackingNumber,
});