readSfixed64 method

Int64 readSfixed64()

Implementation

Int64 readSfixed64() {
  var data = _readByteData(8);
  var view = Uint8List.view(data.buffer, data.offsetInBytes, 8);
  return Int64.fromBytes(view);
}