copyWithWrapped method

Implementation

WebApiModulesIntegrationsStorefrontProductImage copyWithWrapped({
  Wrapped<String?>? id,
  Wrapped<String?>? url,
}) {
  return WebApiModulesIntegrationsStorefrontProductImage(
    id: (id != null ? id.value : this.id),
    url: (url != null ? url.value : this.url),
  );
}