Creates a PodIP from JSON data.
factory PodIP.fromJson(Map<String, dynamic> json) { final tempIpJson = json['ip']; final String? tempIp = tempIpJson; return PodIP( ip: tempIp, ); }