remove method
Removes a child.
Implementation
void remove(RenderBox child) {
if (!identical(child.parent, this)) return;
dropChild(child);
_childData.remove(child);
}
Removes a child.
void remove(RenderBox child) {
if (!identical(child.parent, this)) return;
dropChild(child);
_childData.remove(child);
}