copyWithWrapped method
Implementation
WebApiModulesPluginsKissFlowOrderResponse copyWithWrapped({
Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg,
Wrapped<WebApiModulesAgentOrderOrder?>? order,
Wrapped<String?>? orderUrl,
Wrapped<String?>? agentEmail,
Wrapped<String?>? projectManagerEmail,
Wrapped<String?>? outsideSalesRepresentativeEmail,
}) {
return WebApiModulesPluginsKissFlowOrderResponse(
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg),
order: (order != null ? order.value : this.order),
orderUrl: (orderUrl != null ? orderUrl.value : this.orderUrl),
agentEmail: (agentEmail != null ? agentEmail.value : this.agentEmail),
projectManagerEmail: (projectManagerEmail != null
? projectManagerEmail.value
: this.projectManagerEmail),
outsideSalesRepresentativeEmail: (outsideSalesRepresentativeEmail != null
? outsideSalesRepresentativeEmail.value
: this.outsideSalesRepresentativeEmail),
);
}