removeAt method

T removeAt(
  1. int index
)

Implementation

T removeAt(int index) {
  var i = _value.removeAt(index);
  update();
  return i;
}