deserializeU256 method

BigInt deserializeU256()

Implementation

BigInt deserializeU256() {
  final low = deserializeU128();
  final high = deserializeU128();

  // combine the two 128-bit values and return (little endian)
  return (high << 128) | low;
}