Location constructor

Location({
  1. String? country,
  2. String? countryCode,
  3. String? region,
  4. String? regionName,
  5. String? timezone,
  6. double? latitude,
  7. double? longitude,
  8. String? isp,
  9. String? currentIP,
})

Implementation

Location({
  this.country,
  this.countryCode,
  this.region,
  this.regionName,
  this.timezone,
  this.latitude,
  this.longitude,
  this.isp,
  this.currentIP,
});