Context constructor
Context({
- required Country? country,
- Region? region,
- required Place? postcode,
- Place? district,
- required Place? place,
- Neighborhood? neighborhood,
- Neighborhood? street,
Implementation
Context({
required this.country,
this.region,
required this.postcode,
this.district,
required this.place,
this.neighborhood,
this.street,
});