initSessionDirFromPath function

void initSessionDirFromPath(
  1. String sessionDirPath
)

Override the session directory from an explicit --session-dir flag. Skips auto-resolution entirely — the caller is responsible for the path.

Implementation

void initSessionDirFromPath(String sessionDirPath) {
  _sessionDir = Directory(sessionDirPath).absolute.path;
}