void push(AbstractControl control)

Insert a new AbstractControl at the end of the array.

Source

void push(AbstractControl control) {
  this.controls.add(control);
  control.setParent(this);
  this.updateValueAndValidity();
}