read64 method

BigInt read64()

Read U64 value from the buffer and shift cursor by 8.

Implementation

BigInt read64() {
  final low = read32();
  final high = read32();
  return (BigInt.from(high) << 32) | BigInt.from(low);
}