getRange method

  1. @override
Iterable<E> getRange(
  1. int start,
  2. int end
)
override

Returns an Iterable that iterates over the objects in the range start inclusive to end exclusive.

Implementation

@override
Iterable<E> getRange(int start, int end) => _wrappedList.getRange(start, end);