replaceWith method - Node class - dart:html library (original) (raw)

description

Node replaceWith(

  1. Node otherNode )

Replaces this node with another node.

Implementation

Node replaceWith(Node otherNode) {
  try {
    final Node parent = this.parentNode!;
    parent._replaceChild(otherNode, this);
  } catch (e) {}
  return this;
}