ShippingAddress constructor

ShippingAddress({
  1. List<String>? addressLine,
  2. String? city,
  3. String? country,
  4. String? dependendLocality,
  5. String? phone,
  6. String? postalCode,
  7. String? recipient,
  8. String? region,
  9. String? sortingCode,
})

Implementation

ShippingAddress(
    {this.addressLine,
    this.city,
    this.country,
    this.dependendLocality,
    this.phone,
    this.postalCode,
    this.recipient,
    this.region,
    this.sortingCode});