remove method
Implementation
void remove(Renderer child) {
assert(child._parent != null);
_children.remove(child);
child
..tick()
.._parent = null
..onRemove();
}
void remove(Renderer child) {
assert(child._parent != null);
_children.remove(child);
child
..tick()
.._parent = null
..onRemove();
}