getAt method

int getAt(
  1. int index
)

Implementation

int getAt(int index) {
  if (index < 0 || index >= _bytes.length) throw RangeError("index $index out of bounds");
  return _bytes[index];
}