delete method

Future<void> delete({
  1. required int id,
})

Handler for tag/{id}.

Delete the tag with the given ID.

Required Parameters:

  • id: Tag identifier

Implementation

Future<void> delete({
    required int id,
}) async => _commandDeleteTag(_client, id: id);