IPDetails constructor

IPDetails({
  1. String? asn,
  2. String? city,
  3. String? country,
  4. String? isp,
  5. String? region,
  6. double? fraudScore,
  7. double? latitude,
  8. double? longitude,
})

Implementation

IPDetails({
  this.asn,
  this.city,
  this.country,
  this.isp,
  this.region,
  this.fraudScore,
  this.latitude,
  this.longitude,
});