getUnchecked method

dynamic getUnchecked(
  1. int index
)

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

Implementation

getUnchecked(int index) => this[index];