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