removeAt method

void removeAt(
  1. int index
)

Remove the control at the given index in the array.

Implementation

void removeAt(int index) {
  controls.removeAt(index);
  updateValueAndValidity();
}