fromMap static method
Implementation
static AddressModel fromMap(Map<String, dynamic> map) {
return AddressModel(
geolocation: GeolocationMapper.fromMap(map['geolocation']),
city: map['city'],
street: map['street'],
number: map['number'],
zipcode: map['zipcode'],
);
}