environ top-level property

Map<String, String> environ
final

A map of environment variables for the current process.

Example: {'PATH': '/usr/bin', 'HOME': '/home/username'}

Implementation

final Map<String, String> environ =
    Map<String, String>.from(Platform.environment);