removeChild method
Removes the child for the specified node.
Implementation
void removeChild(RenderBox child, TKey nodeId) {
if (identical(_children[nodeId], child)) {
_children.remove(nodeId);
}
dropChild(child);
}
Removes the child for the specified node.
void removeChild(RenderBox child, TKey nodeId) {
if (identical(_children[nodeId], child)) {
_children.remove(nodeId);
}
dropChild(child);
}