addChildren method

void addChildren(
  1. List<Box> children
)

Implementation

void addChildren(List<Box> children) {
  _attachChildren([..._children, ...children]);
  markNeedsLayout();
}