operator [] method

int operator [](
  1. int index
)

The byte at a given index.

Implementation

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