crewPartialUpdate abstract method

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

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

Implementation

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