copyWithWrapped method
Implementation
FwStandardReportingFwReportRenderRequest copyWithWrapped(
{Wrapped<String?>? renderMode,
Wrapped<Map<String, dynamic>?>? parameters,
Wrapped<FwStandardReportingFwReportEmailInfo?>? email,
Wrapped<bool?>? downloadPdfAsAttachment,
Wrapped<FwStandardReportingFwReportRenderRequestEmailImageOptions?>?
emailImageOptions}) {
return FwStandardReportingFwReportRenderRequest(
renderMode: (renderMode != null ? renderMode.value : this.renderMode),
parameters: (parameters != null ? parameters.value : this.parameters),
email: (email != null ? email.value : this.email),
downloadPdfAsAttachment: (downloadPdfAsAttachment != null
? downloadPdfAsAttachment.value
: this.downloadPdfAsAttachment),
emailImageOptions: (emailImageOptions != null
? emailImageOptions.value
: this.emailImageOptions));
}