watch method

  1. @override
Cleanup watch(
  1. void watcher()
)
override

Subscribes to this signal, ignoring data.

Implementation

@override
Cleanup watch(void Function() watcher) {
  return call((A _, B _) => watcher());
}