removeAt abstract method

dynamic removeAt(
  1. int index
)

Removes the element at the specified index

Sync CollectiveList returns the removed element Async CollectiveList returns Future<E> if the element was removed

Implementation

removeAt(int index);