deleteNodes method

void deleteNodes(
  1. Iterable<Node> nodes
)

Deletes the Nodes in the document.

Implementation

void deleteNodes(Iterable<Node> nodes) {
  nodes.forEach(deleteNode);
}