tagsRead abstract method

  1. @Get(path: '/tags/{id}')
Future<Response<Tag>> tagsRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/tags/{id}')
Future<chopper.Response<Tag>> tagsRead({@Path('id') @required int? id});