assetReportRemovePost method

Future<Response<AssetReportRemoveResponse>> assetReportRemovePost({
  1. required AssetReportRemoveRequest? body,
})

Delete an Asset Report

Implementation

Future<chopper.Response<AssetReportRemoveResponse>> assetReportRemovePost(
    {required AssetReportRemoveRequest? body}) {
  generatedMapping.putIfAbsent(AssetReportRemoveResponse,
      () => AssetReportRemoveResponse.fromJsonFactory);

  return _assetReportRemovePost(body: body);
}