remove method

void remove(
  1. RenderBox child
)

Removes a child.

Implementation

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