addElement method

void addElement(
  1. SvgElement element
)

Adds a single SvgElement to be included in the SVG.

Implementation

void addElement(SvgElement element) {
  _elements.add(element);
}