insert abstract method

dynamic insert(
  1. int index,
  2. E element
)

Inserts an element at the specified index

Sync CollectiveList returns void Async CollectiveList returns Future<void>

Implementation

insert(int index, E element);