SessionShipping constructor

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

shipping

Shipping information for this payment.

Implementation

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