watch method

T watch(
  1. BuildContext context, {
  2. String? debugLabel,
})

Rebuild the Element that the current signal is inside of

Implementation

T watch(
  BuildContext context, {
  String? debugLabel,
}) {
  return watchSignal<T>(
    context,
    this,
    debugLabel: debugLabel,
  );
}