16 lines
296 B
Dart
16 lines
296 B
Dart
|
|
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});
|
||
|
|
}
|