ChargeRequestAddress.fromJson constructor

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

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"];
}