positionsDelete abstract method

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

@param id The LASSO unique identifier for this resource.

Implementation

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