getSystemProperty method

String? getSystemProperty(
  1. String key
)

Gets a system property value

Returns null if the property is not set

Implementation

String? getSystemProperty(String key) {
  return _systemProperties[key];
}