getUInt8 static method

int getUInt8(
  1. Uint8List buf,
  2. int offset
)

Implementation

static int getUInt8(Uint8List buf, int offset) {
  return (buf[offset] & 0xff);
}