watch3<A, B, C> static method

Widget watch3<A, B, C>(
  1. Reactive<A> a,
  2. Reactive<B> b,
  3. Reactive<C> c,
  4. Widget builder(
    1. A a,
    2. B b,
    3. C c
    ), {
  5. Key? key,
})

Build a widget from three explicit reactive values.

Implementation

static Widget watch3<A, B, C>(
  Reactive<A> a,
  Reactive<B> b,
  Reactive<C> c,
  Widget Function(A a, B b, C c) builder, {
  Key? key,
}) {
  return ReactiveBuilder(() => builder(a.value, b.value, c.value), key: key);
}