read256 method

BigInt read256()

Read U256 value from the buffer and shift cursor by 32.

Implementation

BigInt read256() {
  final low = read128();
  final high = read128();
  return (high << 128) | low;
}