get method

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

Handler for tag/{id}.

Returns the tag with the matching ID.

Required Parameters:

  • id: Tag identifier

Implementation

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