ChargeRequestAddress.fromJson constructor
Initialized ChargeRequestAddress from a json object
Implementation
ChargeRequestAddress.fromJson(Map<String, dynamic> json) {
this.address = json["address"];
this.city = json["city"];
this.state = json["state"];
this.zipCode = json["zipcode"];
this.country = json["country"];
}