add method
- ChildType child
Append child to the end of this render object's child list.
Implementation
void add(ChildType child) {
insert(child, after: _lastChild);
}
Append child to the end of this render object's child list.
void add(ChildType child) {
insert(child, after: _lastChild);
}