call method

Cleanup call(
  1. void watcher(
    1. A
    )
)

Subscribes to this signal.

Implementation

Cleanup call(void Function(A) watcher) {
  return _register(() => _watch(watcher));
}