Hi, how would I emit an error into my MutableState...
# flow
l
Hi, how would I emit an error into my MutableStateFlow for testing?
g
You cannot, because it cannot be completed (including finish with error)
Use Flow if it can finish with error
l
Thanks @gildor !