crewTagsRead abstract method

  1. @Get(path: '/crew_tags/{id}')
Future<Response<CrewTag>> crewTagsRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/crew_tags/{id}')
Future<chopper.Response<CrewTag>> crewTagsRead(
    {@Path('id') @required int? id});