versionFilePath function

String versionFilePath(
  1. String workingDirectory, {
  2. String? daemonSharedPath,
})

Used to signal to clients the current version of the build daemon.

Implementation

String versionFilePath(String workingDirectory, {String? daemonSharedPath}) =>
    p.join(
      daemonWorkspace(workingDirectory, daemonSharedPath: daemonSharedPath),
      '.dart_build_daemon_version',
    );