removeAt method

void removeAt(
  1. int index
)

Removes the object at position index from this list.

https://api.flutter.dev/flutter/dart-core/List/removeAt.html

Implementation

void removeAt(int index) {
  _rawList = _rawList.toList();
  _rawList.removeAt(index);
  _listChanged();
}