removeAttribute method

void removeAttribute(
  1. String name
)

Removes an already added attribute.

If this object has been stopped, this method returns without removing the attribute.

Implementation

void removeAttribute(String name) {
  return _delegate.removeAttribute(name);
}