addChild method

void addChild(
  1. SvgElement child
)

Adds a child SvgElement to this element.

Implementation

void addChild(SvgElement child) {
  _children.add(child);
}