copyWith method

WebApiModulesAgentOrderCompletePoWorksheetSessionRequest copyWith({
  1. String? sessionId,
  2. String? existingInternalOrderId,
  3. String? recType,
})

Implementation

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