watch2<A, B> static method
Build a widget from two explicit reactive values.
Implementation
static Widget watch2<A, B>(
Reactive<A> a,
Reactive<B> b,
Widget Function(A a, B b) builder, {
Key? key,
}) {
return ReactiveBuilder(() => builder(a.value, b.value), key: key);
}