removeAt method
Tombstones the visible element at index.
Implementation
RgaList<T> removeAt(int index) {
final visible = _visible();
if (index < 0 || index >= visible.length) {
throw RangeError.index(index, visible, 'index');
}
return removeById(visible[index].id);
}