Geographical constructor

Geographical({
  1. bool? postal_code,
  2. required double area,
  3. String? region,
  4. String? subregion,
  5. String? world_region,
  6. String? region_code,
  7. String? subregion_code,
  8. bool? landlocked,
  9. required String independent,
  10. required LatLng latLng_dms,
  11. required LatLng latLng_dec,
  12. required LatLng latLng_min,
  13. required LatLng latLng_max,
})

Implementation

Geographical({
  this.postal_code,
  required this.area,
  this.region,
  this.subregion,
  this.world_region,
  this.region_code,
  this.subregion_code,
  this.landlocked,
  // this.borders,
  // this.continent,
  required this.independent,
  required this.latLng_dms,
  required this.latLng_dec,
  required this.latLng_min,
  required this.latLng_max,
});