IpLocation constructor

IpLocation(
  1. num? accuracyRadius,
  2. num? latitude,
  3. num? longitude,
  4. String? postalCode,
  5. String? timezone,
  6. City? city,
  7. Country? country,
  8. Continent? continent,
  9. List<Subdivision>? subdivisions,
)

Default constructor

Implementation

IpLocation(
    this.accuracyRadius,
    this.latitude,
    this.longitude,
    this.postalCode,
    this.timezone,
    this.city,
    this.country,
    this.continent,
    this.subdivisions);