replaceWith 方法

Node replaceWith(
  1. Node otherNode
)

使用另一个节点替换当前节点。

实现

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