readInt8 method

int readInt8()

Implementation

int readInt8() {
  final value = readUInt8();
  return (value > 127) ? (value & 0x7F) : -value;
}