CardShipping constructor

const CardShipping({
  1. required CardholderAddress address,
  2. CardCustoms? customs,
  3. required String name,
  4. String? phoneNumber,
  5. bool? requireSignature,
  6. IssuingCardShippingService? service,
  7. IssuingCardShippingType? type,
})

shipping_specs

The address where the card will be shipped.

Implementation

const CardShipping({
  required this.address,
  this.customs,
  required this.name,
  this.phoneNumber,
  this.requireSignature,
  this.service,
  this.type,
});