Is this all that is needed to use a `Flow` as `Liv...
# android
m
Is this all that is needed to use a
Flow
as
LiveData
? 😮
Copy code
fun <Value> Flow<Value>.asLiveData() = liveData<Value> {
	collect(this::emit)
}