<How To send request with different body to an Api...
# stackoverflow
u
How To send request with different body to an Api with paging3 kotlin Hi I have a function inside my viewModel which make a pager and return a flow: fun loadLastMoviesList(genreId: Int) = Pager(config = PagingConfig(10)) { LastMoviesPaging(repository, genreId) }.flow.cachedIn(viewModelScope) and a click listener in my HomeFragment which whenever user click it execute the function with different genreId: genresAdapter.setOnItemClickListener { genre, name -> lastMoviesTitle.text = "$name Movies" genre.id?.let { id ->...