getInt64 method

int getInt64([
  1. Endian endian = Endian.little
])

Returns the positive integer represented by the eight bytes Increments the offset value by eight The return value will be between 0 and 264 - 1, inclusive.

Implementation

int getInt64([Endian endian = Endian.little]) {
  final result = buffer.getInt64(offset, endian);
  offset += 8;
  return result;
}