readInt64 method

int readInt64()

Implementation

int readInt64() {
  _reserveBytes(8);
  _offset += 8;
  return _byteData.getInt64(_offset - 8);
}