copyWith method
Implementation
WebApiModulesPluginsKissFlowQuoteResponse copyWith({
int? status,
bool? success,
String? msg,
WebApiModulesAgentQuoteQuote? quote,
String? quoteUrl,
String? agentEmail,
String? projectManagerEmail,
String? outsideSalesRepresentativeEmail,
}) {
return WebApiModulesPluginsKissFlowQuoteResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
quote: quote ?? this.quote,
quoteUrl: quoteUrl ?? this.quoteUrl,
agentEmail: agentEmail ?? this.agentEmail,
projectManagerEmail: projectManagerEmail ?? this.projectManagerEmail,
outsideSalesRepresentativeEmail:
outsideSalesRepresentativeEmail ??
this.outsideSalesRepresentativeEmail,
);
}