positionChild method

void positionChild(
  1. RenderBox child,
  2. int x,
  3. int y
)

Position a child within this box

Helper method for laying out children.

Implementation

void positionChild(RenderBox child, int x, int y) {
  child.x = x;
  child.y = y;
}