removeIndex method

void removeIndex(
  1. int i
)

Remove a value with a specified index in values and this class notifies its listeners

Implementation

void removeIndex(int i) {
  remove(values[i]);
}