fromMap method
Implementation
static FContactPostalAddressLabeled fromMap(Map map) {
return FContactPostalAddressLabeled(
label: map["label"] as String,
street: map["street"] as String,
city: map["city"] as String,
subLocality: map["subLocality"] as String,
subAdministrativeArea: map["subAdministrativeArea"] as String,
postalCode: map["postalCode"] as String,
state: map["state"] as String,
country: map["country"] as String,
isoCountryCode: map["isoCountryCode"] as String,
formatted: map["formatted"] as String);
}