copyWithWrapped method

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

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