detach method
void
detach()
Detaches this box and all its children from the layout pipeline.
This breaks the connection to the layout system for this subtree.
Implementation
void detach() {
assert(_owner != null);
_owner = null;
for (final child in _children) {
child.detach();
}
}