getGeoIPLookup method

Future<TautulliGeolocationInfo> getGeoIPLookup({
  1. required String ipAddress,
})

Handler for get_geoip_lookup.

Get the geolocation info for an IP address.

Required Parameters:

  • ipAddress: The IP address to lookup

Implementation

Future<TautulliGeolocationInfo> getGeoIPLookup({
    required String ipAddress,
}) async => _commandGetGeoIPLookup(_client, ipAddress: ipAddress);