removeAt method

void removeAt(
  1. int index
)

Implementation

void removeAt(int index) {
  _value.removeAt(index);
  _status = AppStatus.success();
  refresh();
}