removeNodeAt method
Implementation
Node? removeNodeAt(int index) {
final childNodes = this.childNodes;
if (index < 0 || index >= childNodes.length) return null;
var node = childNodes.item(index);
if (node == null) return null;
return removeChild(node);
}