removeAt method

void removeAt(
  1. int index
)

Removes an item at the specified index.

Implementation

void removeAt(int index) {
  final newList = List<T>.from(value)..removeAt(index);
  value = newList;
}