addChildren method
Adds multiple children to this parent box.
All children are appended to the end of the children list and the layout is marked as needing an update.
Implementation
void addChildren(List<Box> children) {
_attachChildren([..._children, ...children]);
markNeedsLayout();
}