itemImportPost abstract method

  1. @Post.new(path: '/item/import')
Future<Response<ItemImportResponse>> itemImportPost({
  1. @Body.new() required ItemImportRequest? body,
})

Import Item

Implementation

@Post(path: '/item/import')
Future<chopper.Response<ItemImportResponse>> itemImportPost(
    {@Body() required ItemImportRequest? body});