optionsFilePath function

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

Used to signal to clients the current set of options of the build daemon.

Implementation

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