removeProperty method

  1. @mustCallSuper
void removeProperty(
  1. String key
)
inherited

Implementation

@mustCallSuper
void removeProperty(String key) {
  properties.remove(key);

  if (key == _STYLE_PROPERTY) {
    setProperty(_STYLE_PROPERTY, null);
  }
}