crewRead abstract method

  1. @Get(path: '/crew/{id}')
Future<Response<Crew>> crewRead({
  1. @Path('id') @required int? id,
})

@param id The LASSO unique identifier for this resource.

Implementation

@Get(path: '/crew/{id}')
Future<chopper.Response<Crew>> crewRead({@Path('id') @required int? id});