copyWithWrapped method
Implementation
WebApiModulesAgentOrderCompletePoWorksheetSessionRequest copyWithWrapped({
Wrapped<String?>? sessionId,
Wrapped<String?>? existingInternalOrderId,
Wrapped<String?>? recType,
}) {
return WebApiModulesAgentOrderCompletePoWorksheetSessionRequest(
sessionId: (sessionId != null ? sessionId.value : this.sessionId),
existingInternalOrderId: (existingInternalOrderId != null
? existingInternalOrderId.value
: this.existingInternalOrderId),
recType: (recType != null ? recType.value : this.recType),
);
}