IPDetails constructor

IPDetails({
  1. required String status,
  2. required String country,
  3. required String countryCode,
  4. required String region,
  5. required String regionName,
  6. required String city,
  7. required String zip,
  8. required String lat,
  9. required String lon,
  10. required String timezone,
  11. required String isp,
  12. required String org,
  13. required String asInfo,
  14. required String query,
})

Creates a new IPDetails instance with all required fields.

Implementation

IPDetails({
  required this.status,
  required this.country,
  required this.countryCode,
  required this.region,
  required this.regionName,
  required this.city,
  required this.zip,
  required this.lat,
  required this.lon,
  required this.timezone,
  required this.isp,
  required this.org,
  required this.asInfo,
  required this.query,
});