reset method

Future<void> reset()

resets the watcher by stopping it and restarting it

Implementation

Future<void> reset() async {
  await _stop(removeEvents: false);

  await start();
}