deleteLookupInfo method

Future<void> deleteLookupInfo({
  1. int? ratingKey,
  2. TautulliAPILookupService? service,
  3. bool? deleteAll,
})

Handler for delete_lookup_info.

Delete the 3rd party API lookup info.

Optional parameters:

  • ratingKey: Identifier/rating key
  • service: A TautulliAPILookupService object of the API lookup service to delete from
  • deleteAll: True to delete all info from the service

Implementation

Future<void> deleteLookupInfo({
    int? ratingKey,
    TautulliAPILookupService? service,
    bool? deleteAll,
}) async => _commandDeleteLookupInfo(_client, ratingKey: ratingKey, service: service, deleteAll: deleteAll);