readInt16be method

int readInt16be()

Implementation

int readInt16be() {
  final bytes = readBytes(2);
  final value = ByteData.sublistView(bytes).getInt16(0, Endian.big);
  print("[DEBUG] readInt16be -> $value");
  return value;
}