IpStackResponse constructor

IpStackResponse({
  1. String? ip,
  2. String? type,
  3. String? continentCode,
  4. String? continentName,
  5. String? countryCode,
  6. String? countryName,
  7. String? regionCode,
  8. String? regionName,
  9. String? city,
  10. String? zip,
  11. double? latitude,
  12. double? longitude,
  13. Location? location,
})

Implementation

IpStackResponse(
    {String? ip,
    String? type,
    String? continentCode,
    String? continentName,
    String? countryCode,
    String? countryName,
    String? regionCode,
    String? regionName,
    String? city,
    String? zip,
    double? latitude,
    double? longitude,
    Location? location}) {
  _ip = ip;
  _type = type;
  _continentCode = continentCode;
  _continentName = continentName;
  _countryCode = countryCode;
  _countryName = countryName;
  _regionCode = regionCode;
  _regionName = regionName;
  _city = city;
  _zip = zip;
  _latitude = latitude;
  _longitude = longitude;
  _location = location;
}