addAllStartingAt_Unsafe method

  1. @override
void addAllStartingAt_Unsafe(
  1. Iterable<T> source, [
  2. int skipItems = 0,
  3. int? nrItems
])
override

Internal implementation of addAllStartingAt, which does not do any safety checks regarding sorting. Only to be overridden in children.

Implementation

@override
// ignore: non_constant_identifier_names
void addAllStartingAt_Unsafe(Iterable<T> source,
    [int skipItems = 0, int? nrItems]) {
  _points.addAll(getSubSource(source, skipItems, nrItems));
}