copyWith method
Implementation
WebApiModulesAgentOrderCompletePoWorksheetSessionRequest copyWith(
{String? sessionId, String? existingInternalOrderId, String? recType}) {
return WebApiModulesAgentOrderCompletePoWorksheetSessionRequest(
sessionId: sessionId ?? this.sessionId,
existingInternalOrderId:
existingInternalOrderId ?? this.existingInternalOrderId,
recType: recType ?? this.recType);
}