call method

Cleanup call(
  1. void watcher(
    1. A,
    2. B
    )
)

Subscribes to this signal.

Implementation

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