removeAttribute method

void removeAttribute(
  1. String key
)

Removes a custom attribute.

Implementation

void removeAttribute(String key) {
  _attributes.remove(key);
}