readInt8 method

int readInt8()

Implementation

int readInt8() {
  final v = readUint8();
  return v >= 0x80 ? v - 0x100 : v;
}