operator [] method

int operator [](
  1. int index
)

Reads a byte at index.

Implementation

int operator [](int index) => _data[index];