I'm using new jetpack Paging 3 library. I have one specific use case. I want to share this data between two screens using viewmodel.
One screen needs paged data and for the second screen I want simple list of this data (not paged list, I need to work with the list...). I do not want list in object of PagingData.
Is there any way how to get the list without PagingData object ? 
As you can see there is no variable the get this data. I tried it even in viewModel when flow is created but I haven't found solution.