obs<T> function
Creates an Observer widget for the given ref.
This is a convenience function that calls RefObserverUtils.obs on the ref.
Implementation
SetupWidget obs<T>(Ref<T> ref, Widget Function(T value) builder, {Key? key}) {
return ref.obs(key: key, builder);
}