GeolocationResult constructor

GeolocationResult({
  1. required int accuracyRadius,
  2. required String city,
  3. required String continent,
  4. required String continentCode,
  5. required String country,
  6. required String countryIsoCode,
  7. required double latitude,
  8. required double longitude,
  9. required String subdivision,
  10. required String subdivisionIsoCode,
})

Returns a new GeolocationResult instance.

Implementation

GeolocationResult({
  required this.accuracyRadius,
  required this.city,
  required this.continent,
  required this.continentCode,
  required this.country,
  required this.countryIsoCode,
  required this.latitude,
  required this.longitude,
  required this.subdivision,
  required this.subdivisionIsoCode,
});