class ShippingAddress { String fullName; String addressLine1; String addressLine2; String city; String state; String phoneNumber; ShippingAddress( {this.fullName, this.addressLine1, this.addressLine2, this.city, this.state, this.phoneNumber}); }