copyWith method
Implementation
WebApiModulesIntegrationsStorefrontProductAvailability copyWith({
double? totalIn,
double? total,
}) {
return WebApiModulesIntegrationsStorefrontProductAvailability(
totalIn: totalIn ?? this.totalIn,
total: total ?? this.total,
);
}