looking at the docs ```@ExperimentalCoroutinesApi ...
# flow
j
looking at the docs
Copy code
@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
}