fun getAllCartItems()

in app/src/main/java/co/elastic/apm/opbeans/app/data/source/cart/LocalCartItemSource.kt [39:43]


    fun getAllCartItems(): Flow<List<CartItem>> {
        return cartItemDao.getAllWithProducts().map { list ->
            list.map { entityToCartItem(it) }
        }.flowOn(Dispatchers.IO)
    }