Hello folks, is there any way to transform flow in...
# coroutines
f
Hello folks, is there any way to transform flow into state flow like an extension function or something else?
b
flow.stateIn
one is suspending function that suspends until first element collected second one is regular function, but requires initial value
👍 1
f
Thank you