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