Files
fcs/lib/domain/vo/shipping_address.dart

16 lines
296 B
Dart
Raw Normal View History

2020-09-15 07:13:41 +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});
}