OrderDeliveryAddress.fromJson constructor

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

Implementation

OrderDeliveryAddress.fromJson(Map<String, dynamic> json) {
  street1 = json["street1"];
  street2 = json["street2"];
  zip = json["zip"];
  city = json["city"];
  state = json["state"];
  country = json["country"];
  countryCode = json["countryCode"];
  informations = json["informations"];
  phone = json["phone"];
  phoneCode = json["phoneCode"];
  placeCatId = json["placeCatId"];
  oowoo = json["oowoo"];
  lng = json["lng"];
  lat = json["lat"];
  utcModifier = json["utcModifier"];
  frequentationDensity = json["frequentationDensity"];
  roadtype = json["roadtype"];
}