Geographical constructor
Geographical({
- bool? postal_code,
- required double area,
- String? region,
- String? subregion,
- String? world_region,
- String? region_code,
- String? subregion_code,
- bool? landlocked,
- required String independent,
- required LatLng latLng_dms,
- required LatLng latLng_dec,
- required LatLng latLng_min,
- 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,
});