copyWith method
Implementation
WebApiModulesIntegrationsStorefrontDealModel copyWith({
String? dealId,
String? deal,
}) {
return WebApiModulesIntegrationsStorefrontDealModel(
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
);
}