@override Stream<bool> onWatchDirectory(String path) => toDirectory(path) .watch(events: FileSystemEvent.all, recursive: false) .map((event) => true) .handleError((e) => false);