removeAttribute method

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

Removes the attribute value with the given fully qualified name.

Implementation

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