Slice<T> constructor

Slice<T>(
  1. List<T> _list,
  2. int _start,
  3. int _end
)

Implementation

Slice(this._list, this._start, this._end)
    : assert(_start >= 0 && _end <= _list.length, "Index out of bounds");