addAll method

DOMNode addAll(
  1. Iterable? entries
)

Adds all entries to children nodes.

Implementation

DOMNode addAll(Iterable? entries) {
  if (entries != null && entries.isNotEmpty) {
    entries.forEach(_addImpl);
    normalizeContent();
  }
  return this;
}