stop method
Stops the watcher
Implementation
Future<void> stop() async {
_running = false;
_debounceTimer?.cancel();
await _sub?.cancel();
_log('\nš Watcher stopped.');
}
Stops the watcher
Future<void> stop() async {
_running = false;
_debounceTimer?.cancel();
await _sub?.cancel();
_log('\nš Watcher stopped.');
}