assetReportCreate abstract method

  1. @Post(path: '/asset_report/create')
Future<Response<AssetReportCreateResponse>> assetReportCreate({
  1. @Body() @required AssetReportCreateRequest? body,
})

Create an Asset Report @param body

Implementation

@Post(path: '/asset_report/create')
Future<chopper.Response<AssetReportCreateResponse>> assetReportCreate(
    {@Body() @required AssetReportCreateRequest? body});