Address.fromJson constructor
Implementation
factory Address.fromJson(Map<String, dynamic> json) {
return Address(
street: json['street'] ?? '',
city: json['city'] ?? '',
state: json['state'] ?? '',
postalCode: json['postalCode'] ?? '',
country: json['country'] ?? '',
);
}