dropChild method
Mark children needs layout when drop child as Flutter did
Implementation
@override
void dropChild(RenderObject child) {
  super.dropChild(child);
  // Loop to mark all the children to needsLayout as flutter did
  _syncChildNeedsLayoutFlag(child);
}