toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data["street1"] = this.street1;
  data["street2"] = this.street2;
  data["zip"] = this.zip;
  data["city"] = this.city;
  data["state"] = this.state;
  data["country"] = this.country;
  data["countryCode"] = this.countryCode;
  data["informations"] = this.informations;
  data["phone"] = this.phone;
  data["phoneCode"] = this.phoneCode;
  data["placeCatId"] = this.placeCatId;
  data["arckipel"] = this.arckipel;
  data["lng"] = this.lng;
  data["lat"] = this.lat;
  data["utcModifier"] = this.utcModifier;
  data["id"] = this.id;
  data["label"] = this.label;
  data["uniqueId"] = this.uniqueId;
  data["isBilling"] = this.isBilling;
  return data;
}