reset method
resets the watcher by stopping it and restarting it
Implementation
Future<void> reset() async {
await _stop(removeEvents: false);
await start();
}
resets the watcher by stopping it and restarting it
Future<void> reset() async {
await _stop(removeEvents: false);
await start();
}