addChild method

Tag addChild(
  1. Tag child
)

Implementation

Tag addChild(Tag child) {
  children.add(child);
  return this;
}