itemRemovePost abstract method
- @Post.new(path: '/item/remove')
- @Body.new() required ItemRemoveRequest? body,
Remove an Item
Implementation
@Post(path: '/item/remove')
Future<chopper.Response<ItemRemoveResponse>> itemRemovePost(
{@Body() required ItemRemoveRequest? body});