copyWithWrapped method

Implementation

WebApiModulesWarehouseCheckInQuikInItemsRequest copyWithWrapped(
    {Wrapped<String?>? contractId,
    Wrapped<List<WebApiModulesWarehouseCheckInQuikInItem>?>? items}) {
  return WebApiModulesWarehouseCheckInQuikInItemsRequest(
      contractId: (contractId != null ? contractId.value : this.contractId),
      items: (items != null ? items.value : this.items));
}