1. override
DisplayObject getChildAt(int index)

Returns the child DisplayObject at the specified index.

Source

@override
DisplayObject getChildAt(int index) {
  if (index < 0 || index >= _children.length) {
    throw new ArgumentError("The supplied index is out of bounds.");
  } else {
    return _children[index];
  }
}