How do i tell the Dart Editor to use the PATH location of the SDK? How do i tell the Dart Editor to use the PATH location of the SDK? dart dart

How do i tell the Dart Editor to use the PATH location of the SDK?


Inside the containing folder create a file called editor.properties (The Dart Editor Bundle already includes this)

ensure the following pair exists:

dart.sdk=/path/to/dart-sdk

Note: Windows environments do not need the drive letter prefix, dart will figure it out - so C:\dart-sdk would by dart.sdk=/dart-sdk

The above path variables for DART_SDK seem relevant to some 3rd party utilities - but AFAIK not the Dart Editor itself. I would love clarification or a list of pertinent configuration variables.