GeoLocationDetails constructor

GeoLocationDetails({
  1. String? continentCode,
  2. String? continentName,
  3. String? countryCode,
  4. String? countryName,
  5. String? subdivisionCode,
  6. String? subdivisionName,
})

Implementation

GeoLocationDetails({
  this.continentCode,
  this.continentName,
  this.countryCode,
  this.countryName,
  this.subdivisionCode,
  this.subdivisionName,
});