How to trigger second flow value?
Why second flow is not triggered if value is changed?
I log Log.d("AuthorName", "$authorName") and it works.
Also when I try to add loadImage() underneath the vm.getImageAuthorFromWikipedia(authorName) it loads image from time to time, so call API works.
ViewModel
@HiltViewModel
class InspirationQuotesViewModel @Inject constructor(
application: Application,
private val postInspirationQuote: PostInspirationQuote,
private val getImageQuotePictureItemUseCase:...