read128 method

BigInt read128()

Read U128 value from the buffer and shift cursor by 16.

Implementation

BigInt read128() {
  final low = read64();
  final high = read64();
  return (high << 64) | low;
}