addChildrenToScene method

void addChildrenToScene(
  1. SceneBuilder builder
)

Uploads all of this layer's children to the engine.

This method is typically used by addToScene to insert the children into the scene. Subclasses of ContainerLayer typically override addToScene to apply effects to the scene using the SceneBuilder API, then insert their children using addChildrenToScene, then reverse the aforementioned effects before returning from addToScene.

Implementation

void addChildrenToScene(ui.SceneBuilder builder) {
  Layer? child = firstChild;
  while (child != null) {
    child._addToSceneWithRetainedRendering(builder);
    child = child.nextSibling;
  }
}