copyWithWrapped method
Implementation
FwStandardReportingFwReportRenderResponse copyWithWrapped({
Wrapped<String?>? renderMode,
Wrapped<String?>? htmlReportUrl,
Wrapped<String?>? pdfReportUrl,
Wrapped<String?>? consoleOutput,
Wrapped<String?>? draftDownloadUrl,
}) {
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),
draftDownloadUrl: (draftDownloadUrl != null
? draftDownloadUrl.value
: this.draftDownloadUrl),
);
}