onCleanup method
Registers a cleanup callback for this watcher.
The fn callback runs before this watcher re-runs and when this watcher
disposes.
Example:
watcher.onCleanup(() => subscription.cancel());
Implementation
@override
void onCleanup(Disposer fn) => raw.onCleanup(fn);