copyWithWrapped method

Implementation

WebApiModulesIntegrationsStorefrontProductAvailability copyWithWrapped({
  Wrapped<double?>? totalIn,
  Wrapped<double?>? total,
}) {
  return WebApiModulesIntegrationsStorefrontProductAvailability(
    totalIn: (totalIn != null ? totalIn.value : this.totalIn),
    total: (total != null ? total.value : this.total),
  );
}