GeolocationData constructor

GeolocationData({
  1. String? country,
  2. String? countryCode,
  3. String? timezone,
  4. String? ip,
  5. double? lat,
  6. double? lon,
})

Implementation

GeolocationData({
  this.country,
  this.countryCode,
  this.timezone,
  this.ip,
  this.lat,
  this.lon
});