Files
fcs/lib/domain/vo/shipping_address.dart
Sai Naw Wun 65dda16fe6 clean up
2020-10-07 02:33:06 +06:30

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});
}