readLong method

int readLong()

Implementation

int readLong() {
  assert(offset + Int64List.bytesPerElement <= byteLength);
  final res = buf.getInt64(offset, Endian.little);
  offset += Int64List.bytesPerElement;
  return res;
}