removeAt method
Removes an item at the specified index.
Implementation
void removeAt(int index) {
final newList = List<T>.from(value)..removeAt(index);
value = newList;
}
Removes an item at the specified index.
void removeAt(int index) {
final newList = List<T>.from(value)..removeAt(index);
value = newList;
}