deleteHostedImages method

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

Handler for delete_hosted_images.

Delete the images uploaded to image hosting services.

Optional parameters:

  • ratingKey: Identifier/rating key
  • service: A TautulliImageHostService object of the hosting service to delete from
  • deleteAll: True to delete all images from the service

Implementation

Future<void> deleteHostedImages({
    int? ratingKey,
    TautulliImageHostService? service,
    bool? deleteAll,
}) async => _commandDeleteHostedImages(_client, ratingKey: ratingKey, service: service, deleteAll: deleteAll);