Context constructor

Context({
  1. required Country? country,
  2. Region? region,
  3. required Place? postcode,
  4. Place? district,
  5. required Place? place,
  6. Neighborhood? neighborhood,
  7. Neighborhood? street,
})

Implementation

Context({
  required this.country,
  this.region,
  required this.postcode,
  this.district,
  required this.place,
  this.neighborhood,
  this.street,
});