copyWith method

WebApiModulesWarehouseCheckInReconcileAssignByOrderOrdersRequest copyWith({
  1. String? contractId,
  2. String? dealId,
  3. String? departmentId,
})

Implementation

WebApiModulesWarehouseCheckInReconcileAssignByOrderOrdersRequest copyWith(
    {String? contractId, String? dealId, String? departmentId}) {
  return WebApiModulesWarehouseCheckInReconcileAssignByOrderOrdersRequest(
      contractId: contractId ?? this.contractId,
      dealId: dealId ?? this.dealId,
      departmentId: departmentId ?? this.departmentId);
}