removeRenderObjectChild method
- covariant ChildType child,
- covariant SlotType slot
override
Remove the given child from renderObject.
The given child is guaranteed to have been inserted at the given slot
and have renderObject as its parent.
Implementation
@override
void removeRenderObjectChild(ChildType child, SlotType slot) {
if (renderObject._slotToChild[slot] == child) {
renderObject._setChild(null, slot);
assert(renderObject._slotToChild[slot] == null);
}
}