watchData method

T? watchData()

Watches and returns the data reactively.

Implementation

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