PATH top-level property

List<String> PATH

Returns the list of directory paths that are contained in the OS's PATH environment variable. They are returned in the same order that they appear within the PATH environment variable (as order is important.)

Implementation

//ignore: non_constant_identifier_names
List<String> get PATH => Env()._path;