crewDelete abstract method

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

@param id The LASSO unique identifier for this resource.

Implementation

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