RemoteIpDetails constructor

RemoteIpDetails({
  1. City? city,
  2. Country? country,
  3. GeoLocation? geoLocation,
  4. String? ipAddressV4,
  5. Organization? organization,
})

Implementation

RemoteIpDetails({
  this.city,
  this.country,
  this.geoLocation,
  this.ipAddressV4,
  this.organization,
});