detach method
void
detach(
- RenderObject child
inherited
Implementation
void detach(RenderObject child) {
if (!identical(child.parent, this)) return;
children.remove(child);
child.parent = null;
}