removeSystemProperty method

void removeSystemProperty(
  1. String key
)

Removes a system property

Implementation

void removeSystemProperty(String key) {
  _systemProperties.remove(key);
}