getUnchecked method

T getUnchecked(
  1. int index
)

Returns the element at the given index without doing bounds checking.

Implementation

@pragma("vm:prefer-inline")
T getUnchecked(int index) => _list[index + _start];