IPDetails constructor
IPDetails({
- required String status,
- required String country,
- required String countryCode,
- required String region,
- required String regionName,
- required String city,
- required String zip,
- required String lat,
- required String lon,
- required String timezone,
- required String isp,
- required String org,
- required String asInfo,
- 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,
});