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