getSystemProperties method

  1. @override
Map<String, String> getSystemProperties()
override

Returns the system properties available to the Dart VM (if any), such as those passed via --define or custom bootstrap logic.

Keys and values are returned as String-String pairs.

Implementation

@override
Map<String, String> getSystemProperties() => System.getProperties();