AddressModel constructor
AddressModel({
- required GeolocationModel geolocation,
- required String city,
- required String street,
- required int number,
- required String zipcode,
Implementation
AddressModel({
required this.geolocation,
required this.city,
required this.street,
required this.number,
required this.zipcode,
});