addElements method

void addElements(
  1. Iterable<SvgElement> elements
)

Adds multiple SvgElements to be included in the SVG.

Implementation

void addElements(Iterable<SvgElement> elements) {
  _elements.addAll(elements);
}