Jacob Applin
09/02/2020, 8:39 PM@ExperimentalCoroutinesApi
public interface MutableStateFlow<T> : StateFlow<T> {
/**
* The current value of this state flow.
*
* Setting a value that is [equal][Any.equals] to the previous one does nothing.
*/
public override var value: T
}