readI8 method

int readI8()

Implementation

int readI8() {
  final unsigned = readU8();
  return unsigned > 127 ? unsigned - 256 : unsigned;
}