watchData method

T? watchData()

Reactively watches the current stream data.

Implementation

T? watchData() {
  throwIfDisposed('watch data');
  return _data.watch();
}