invalidateAll method

void invalidateAll()

Mark everything as stale (e.g., after login/logout).

Implementation

void invalidateAll() {
  AiLogger.log(
    'All caches invalidated (global + session + screen)',
    tag: 'Cache',
  );
  _globalDirty = true;
  _sessionDirty = true;
  _screenDirty = true;
}