IpInfo constructor

IpInfo({
  1. String? status,
  2. String? country,
  3. String? countryCode,
  4. String? region,
  5. String? regionName,
  6. String? city,
  7. String? zip,
  8. double? lat,
  9. double? lon,
  10. String? timezone,
  11. String? isp,
  12. String? org,
  13. String? as,
  14. String? query,
})

Implementation

IpInfo(
    {this.status,
    this.country,
    this.countryCode,
    this.region,
    this.regionName,
    this.city,
    this.zip,
    this.lat,
    this.lon,
    this.timezone,
    this.isp,
    this.org,
    this.as,
    this.query});