deserializeU64 method
Implementation
BigInt deserializeU64() {
int low = deserializeU32();
int high = deserializeU32();
// combine the two 32-bit values and return (little endian)
return (BigInt.from(high) << 32) | BigInt.from(low);
}
BigInt deserializeU64() {
int low = deserializeU32();
int high = deserializeU32();
// combine the two 32-bit values and return (little endian)
return (BigInt.from(high) << 32) | BigInt.from(low);
}