call method

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

Subscribes to this signal.

Implementation

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