StateProvider
interface StateProvider
StateProvider is an abstraction used to supply the latest (and most accurate) value of a given State in a given scope, when read tracking is enabled.
This makes it possible for the same State object to return different State.value in various scopes, unlocking new possibilities. For example, a state that's read in post-mount will have the correct value without having to recreate that state object when its value gets updated. This works even if the previous phases were completely skipped.