removeAllWatches method

void removeAllWatches()

Implementation

void removeAllWatches() {
  for (final StreamSubscription<FileSystemEvent>? sub in watchMap.values) {
    sub?.cancel();
  }
}