A mutable state flow is created using MutableStateFlow(value) constructor function with the initial value. The value of mutable state flow can be updated by setting its value property. Updates to the value are always conflated. So a slow collector skips fast updates, but always collects the most recently emitted value.
I was wondering does this behavior
Copy code
So a slow collector skips fast updates, but always collects the most recently emitted value.