add method

void add (ChildType child)

Append child to the end of this render object's child list.

Implementation

void add(ChildType child) {
  insert(child, after: _lastChild);
}