Address.fromJson constructor
Implementation
factory Address.fromJson(Map<String, dynamic> json) => Address(
city: json["city"],
country: json["country"],
line1: json["line1"],
line2: json["line2"],
postalCode: json["postal_code"],
state: json["state"],
);