watch method

(TListenable0, T2, T4, AsyncSnapshot<T5>) watch(
  1. BuildContext context
)

Watch all observables for changes.

Whenever any observable notifies of a change, the context will be rebuilt.

Returns current values for each observable.

It is safe to call this method multiple times within the same build method.

Implementation

(TListenable0, T2, T4, AsyncSnapshot<T5>) watch(BuildContext context) =>
    ($1.of(context).watch(context), $2.of(context).watch(context), $3.of(context).watch(context), $4.of(context).watch(context),);