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