watch<T> function

T watch<T>(
  1. Watchable<T> watchable
)

Implementation

T watch<T>(Watchable<T> watchable) {
  return watchable.value;
}