copyWithWrapped method
Implementation
WebApiModulesAgentOrderKissFlowQuoteOrderSubmissionRequest copyWithWrapped({
Wrapped<String?>? quoteOrderId,
Wrapped<String?>? goToUrl,
}) {
return WebApiModulesAgentOrderKissFlowQuoteOrderSubmissionRequest(
quoteOrderId: (quoteOrderId != null
? quoteOrderId.value
: this.quoteOrderId),
goToUrl: (goToUrl != null ? goToUrl.value : this.goToUrl),
);
}