watch<T> static method
Build a widget from a specific reactive value.
Implementation
static Widget watch<T>(
Reactive<T> reactive,
Widget Function(T value) builder, {
Key? key,
}) {
return _ReactiveValueBuilder<T>(
key: key,
reactive: reactive,
builder: builder,
);
}