IpCountryData constructor

IpCountryData({
  1. String? ip,
  2. String? ip_number,
  3. String? ip_version,
  4. String? country_name,
  5. String? country_code,
  6. String? isp,
  7. String? response_code,
  8. String? response_message,
})

Implementation

IpCountryData({
  this.ip,
  this.ip_number,
  this.ip_version,
  this.country_name,
  this.country_code,
  this.isp,
  this.response_code,
  this.response_message,
});