copyWith method

FwStandardReportingFwReportRenderResponse copyWith({
  1. String? renderMode,
  2. String? htmlReportUrl,
  3. String? pdfReportUrl,
  4. String? consoleOutput,
  5. String? draftDownloadUrl,
})

Implementation

FwStandardReportingFwReportRenderResponse copyWith(
    {String? renderMode,
    String? htmlReportUrl,
    String? pdfReportUrl,
    String? consoleOutput,
    String? draftDownloadUrl}) {
  return FwStandardReportingFwReportRenderResponse(
      renderMode: renderMode ?? this.renderMode,
      htmlReportUrl: htmlReportUrl ?? this.htmlReportUrl,
      pdfReportUrl: pdfReportUrl ?? this.pdfReportUrl,
      consoleOutput: consoleOutput ?? this.consoleOutput,
      draftDownloadUrl: draftDownloadUrl ?? this.draftDownloadUrl);
}