removeAttr method

void removeAttr(
  1. String name
)

Removes an attribute from the element.

Implementation

void removeAttr(String name) {
  _element?.removeAttribute(name);
}