copyWith method
Implementation
FwStandardReportingFwReportRenderRequestEmailImageOptions copyWith({
int? width,
int? height,
}) {
return FwStandardReportingFwReportRenderRequestEmailImageOptions(
width: width ?? this.width,
height: height ?? this.height,
);
}