get method

int get(
  1. int index
)

Gets the byte at the specified index.

index the index

Implementation

int get(int index) {
  return _bytes[index];
}