Merge branch 'master' of tzw/fcs into master

This commit is contained in:
2020-06-25 00:50:37 +00:00
committed by Gogs
17 changed files with 698 additions and 169 deletions

View File

@@ -6,6 +6,7 @@ class PickUp {
String toTime;
int numberOfPackage;
int weight;
int handlingFee;
String address;
String status;
DateTime date;
@@ -18,6 +19,7 @@ class PickUp {
this.toTime,
this.numberOfPackage,
this.weight,
this.handlingFee,
this.address,
this.status,
this.date});

View File

@@ -0,0 +1,15 @@
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});
}