setRange abstract method

dynamic setRange(
  1. int start,
  2. int end,
  3. Iterable<E> iterable, [
  4. int skipCount = 0,
])

Sets the elements in the range to the specified iterable

Sync CollectiveList returns void Async CollectiveList returns Future<void>

Implementation

setRange(int start, int end, Iterable<E> iterable, [int skipCount = 0]);