toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'id'] = this.id;
    json[r'address1'] = this.address1;
    json[r'phoneCountry'] = this.phoneCountry;
  return json;
}