Files
fcs/lib/vo/shipping_address.dart

16 lines
296 B
Dart
Raw Normal View History

2020-06-24 16:06:40 +06:30
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});
}