void insert(int index, T displayObject)

Source

void insert(int index, T displayObject) {
  this.parent.addChildAt(displayObject, index);
}