remove method - Node class - dart:html library (original) (raw)
void remove()
Removes this node from the DOM.
Implementation
void remove() {
// TODO(jacobr): should we throw an exception if parent is already null?
// TODO(vsm): Use the native remove when available.
if (this.parentNode != null) {
final Node parent = this.parentNode!;
parent._removeChild(this);
}
}