assetReportRefreshPost method

Future<Response<AssetReportRefreshResponse>> assetReportRefreshPost({
  1. required AssetReportRefreshRequest? body,
})

Refresh an Asset Report

Implementation

Future<chopper.Response<AssetReportRefreshResponse>> assetReportRefreshPost(
    {required AssetReportRefreshRequest? body}) {
  generatedMapping.putIfAbsent(AssetReportRefreshResponse,
      () => AssetReportRefreshResponse.fromJsonFactory);

  return _assetReportRefreshPost(body: body);
}