IpGeoLocation.fromJson constructor
Constructs an IpGeoLocation from the provided json.
Implementation
factory IpGeoLocation.fromJson(Map<String, dynamic> json) {
if (!json.containsKey('countryCode')) {
json['countryCode'] = json['country_code'] ?? '';
}
return _$IpGeoLocationFromJson(json);
}