clearProperty method

void clearProperty(
  1. String key
)

Removes the specified property from this configuration. This implementation performs some preparations and then delegates to clearPropertyDirect(), which will do the real work.

Implementation

void clearProperty(String key) {
  clearPropertyDirect(key);
}