copyWithWrapped method

FwStandardReportingFwReportRenderResponse copyWithWrapped({
  1. Wrapped<String?>? renderMode,
  2. Wrapped<String?>? htmlReportUrl,
  3. Wrapped<String?>? pdfReportUrl,
  4. Wrapped<String?>? consoleOutput,
  5. Wrapped<String?>? draftDownloadUrl,
})

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));
}