copyWithWrapped method

Implementation

FwStandardReportingFwReportRenderRequestEmailImageOptions copyWithWrapped({
  Wrapped<int?>? width,
  Wrapped<int?>? height,
}) {
  return FwStandardReportingFwReportRenderRequestEmailImageOptions(
    width: (width != null ? width.value : this.width),
    height: (height != null ? height.value : this.height),
  );
}