copyWithWrapped method
Implementation
FwStandardReportingFwReportRenderResponse copyWithWrapped(
{Wrapped<String?>? renderMode,
Wrapped<String?>? htmlReportUrl,
Wrapped<String?>? pdfReportUrl,
Wrapped<String?>? consoleOutput}) {
return FwStandardReportingFwReportRenderResponse(
renderMode: (renderMode != null ? renderMode.value : this.renderMode),
htmlReportUrl:
(htmlReportUrl != null ? htmlReportUrl.value : this.htmlReportUrl),
pdfReportUrl:
(pdfReportUrl != null ? pdfReportUrl.value : this.pdfReportUrl),
consoleOutput:
(consoleOutput != null ? consoleOutput.value : this.consoleOutput));
}