push method

void push(
  1. AbstractControl control
)

Insert a new AbstractControl at the end of the array.

Implementation

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