GeoLocation constructor

GeoLocation({
  1. String? continentCode,
  2. String? countryCode,
  3. String? subdivisionCode,
})

Implementation

GeoLocation({
  this.continentCode,
  this.countryCode,
  this.subdivisionCode,
});