ChargeCreateOptionsShipping constructor

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

optional_fields_shipping

Shipping information for the charge. Helps prevent fraud on charges for physical goods.

Implementation

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