read<T> method

  1. @protected
  2. @nonVirtual
T read<T>(
  1. Watchable<T> ref
)

Gets the current state referenced by ref.

Implementation

@protected
@nonVirtual
T read<T>(Watchable<T> ref) {
  return scope.read(ref, null);
}