copyWithWrapped method

WebApiModulesWarehouseCheckOutOrderHasStorageContainerResponse copyWithWrapped({
  1. Wrapped<bool?>? orderHasStorageContainer,
})

Implementation

WebApiModulesWarehouseCheckOutOrderHasStorageContainerResponse
copyWithWrapped({Wrapped<bool?>? orderHasStorageContainer}) {
  return WebApiModulesWarehouseCheckOutOrderHasStorageContainerResponse(
    orderHasStorageContainer: (orderHasStorageContainer != null
        ? orderHasStorageContainer.value
        : this.orderHasStorageContainer),
  );
}