getUint8 method

int getUint8(
  1. int offset
)

Reads 1-byte as an unsigned integer. The offset must satisfy the relations 0offsetoffset+1this.length.

Implementation

int getUint8(final int offset) {
  return asByteData().getUint8(offset);
}