notifyChange static method

void notifyChange()

Notify listeners that the file system has changed. This only notifies UI components to refresh their views. Use invalidateCache() to clear specific cache entries before calling this.

Implementation

static void notifyChange() {
  podFilesChangeNotifier.value++;
  debugPrint('PodDirectoryService: Notified file system change');
}