What's the difference between ```mutableStateFlow1...
# coroutines
r
What's the difference between
Copy code
mutableStateFlow1.value = mutableStateFlow0.value
and
Copy code
mutableStateFlow1.emit(mutableStateFlow0.value)
same 1
r
😆