attachRenderObject method

void attachRenderObject(
  1. Object? newSlot
)

Add renderObject to the render tree at the location specified by newSlot.

The default implementation of this function calls attachRenderObject recursively on each child. The RenderObjectElement.attachRenderObject override does the actual work of adding renderObject to the render tree.

The newSlot argument specifies the new value for this element's slot.

Implementation

void attachRenderObject(Object? newSlot) {
  assert(slot == null);
  visitChildren((Element child) {
    child.attachRenderObject(newSlot);
  });
  _slot = newSlot;
}