removeAttribute method

void removeAttribute(
  1. String name
)

Removes an attribute from the list. Does nothing if the attribute does not exist.

Implementation

void removeAttribute(String name) {
  throw UnimplementedError('removeAttribute() is not implemented');
}