crewNotesUpdate abstract method

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

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

Implementation

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