removeAttribute method

void removeAttribute(
  1. String name, {
  2. String? namespace,
})
inherited

Removes the attribute value with the given fully qualified name.

Implementation

void removeAttribute(String name, {String? namespace}) =>
    setAttribute(name, null, namespace: namespace);