copyWith method

WebApiModulesWarehouseCheckOutCompleteCheckOutContractRequest copyWith({
  1. String? orderId,
  2. String? contractId,
  3. String? responsiblePersonId,
})

Implementation

WebApiModulesWarehouseCheckOutCompleteCheckOutContractRequest copyWith(
    {String? orderId, String? contractId, String? responsiblePersonId}) {
  return WebApiModulesWarehouseCheckOutCompleteCheckOutContractRequest(
      orderId: orderId ?? this.orderId,
      contractId: contractId ?? this.contractId,
      responsiblePersonId: responsiblePersonId ?? this.responsiblePersonId);
}