How to emit the same value with StateFlow? In my c...
# coroutines
k
How to emit the same value with StateFlow? In my case, it's just Unit that I'd like to emit.
l
It's impossible. You want to use
SharedFlow
instead.
👍 3