ShippingAddress.fromJson constructor

ShippingAddress.fromJson(
  1. Map<String, dynamic> json
)

Implementation

ShippingAddress.fromJson(Map<String, dynamic> json) {
  firstName = json['firstName'];
  lastName = json['lastName'];
  line1 = json['line1'];
  line2 = json['line2'];
  city = json['city'];
  state = json['state'];
  postalCode = json['postalCode'];
  country = json['country'];
  isFullAddress = json['isFullAddress'];
  isStoreAddress = json['isStoreAddress'];
}