deserializeU256 method
Implementation
BigInt deserializeU256() {
final low = deserializeU128();
final high = deserializeU128();
// combine the two 128-bit values and return (little endian)
return (high << 128) | low;
}
BigInt deserializeU256() {
final low = deserializeU128();
final high = deserializeU128();
// combine the two 128-bit values and return (little endian)
return (high << 128) | low;
}