unpackUint8 method

int unpackUint8()

Implementation

int unpackUint8() {
  int byte = dataView[index] & 0xff;
  index++;
  return byte;
}