itemRemove abstract method

  1. @Post(path: '/item/remove')
Future<Response<ItemRemoveResponse>> itemRemove({
  1. @Body() @required ItemRemoveRequest? body,
})

Remove an Item @param body

Implementation

@Post(path: '/item/remove')
Future<chopper.Response<ItemRemoveResponse>> itemRemove(
    {@Body() @required ItemRemoveRequest? body});