stop method

Future<void> stop()

Stops the watcher

Implementation

Future<void> stop() async {
  _running = false;
  _debounceTimer?.cancel();
  await _sub?.cancel();
  _log('\nšŸ›‘  Watcher stopped.');
}