What should I use instead of `MutableStateFlow` as...
# coroutines
f
What should I use instead of
MutableStateFlow
as my
flatMapLatest
trigger when I need to allow emitting the same value in succession? Channel?
l
MutableSharedFlow
?
f
thanks