removeAt method

T removeAt(
  1. int index
)

Removes item from List at given index and notifies stream.

Implementation

T removeAt(int index) {
  final T item = _list.removeAt(index);

  notify();

  return item;
}