read128 method
Read U128 value from the buffer and shift cursor by 16.
Implementation
BigInt read128() {
final low = read64();
final high = read64();
return (high << 64) | low;
}
Read U128 value from the buffer and shift cursor by 16.
BigInt read128() {
final low = read64();
final high = read64();
return (high << 64) | low;
}