itemImport abstract method

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

Import Item @param body

Implementation

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