sublist method

  1. @override
List<E> sublist(
  1. int start, [
  2. int? end
])
override

Returns a new list containing the objects from start inclusive to end exclusive.

Implementation

@override
List<E> sublist(int start, [int? end]) => _wrappedList.sublist(start, end);