removeAt method
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();
}