crewUpdate abstract method

  1. @Put(path: '/crew/{id}')
Future<Response<Crew>> crewUpdate({
  1. @Body() @required Crew? data,
  2. @Path('id') @required int? id,
})

@param data @param id The LASSO unique identifier for this resource.

Implementation

@Put(path: '/crew/{id}')
Future<chopper.Response<Crew>> crewUpdate(
    {@Body() @required Crew? data, @Path('id') @required int? id});