remove method
Remove this child from the child list.
Requires the child to be present in the child list.
Implementation
@override
void remove(RenderBox child) {
super.remove(child);
_cachedPaintingOrder = null;
markNeedsIntrinsicMeasurementUpdate('childListRemove');
_markNearestInlineFormattingContextDirty();
}