void removeAt(num index)

Remove the control at the given index in the array.

Source

void removeAt(num index) {
  controls.removeAt(index);
  this.updateValueAndValidity();
}