insertAll abstract method

dynamic insertAll(
  1. int index,
  2. Iterable<E> iterable
)

Inserts all elements from the iterable at the specified index

Sync CollectiveList returns void Async CollectiveList returns Future<void>

Implementation

insertAll(int index, Iterable<E> iterable);