ShippingAddress constructor

ShippingAddress({
  1. String? name,
  2. String? address,
  3. String? zipcode,
  4. String? city,
  5. String? email,
  6. String? phoneNumber,
  7. String? mobileNumber,
})

Implementation

ShippingAddress({
  this.name,
  this.address,
  this.zipcode,
  this.city,
  this.email,
  this.phoneNumber,
  this.mobileNumber,
});