read256 method
Read U256 value from the buffer and shift cursor by 32.
Implementation
BigInt read256() {
final low = read128();
final high = read128();
return (high << 128) | low;
}
Read U256 value from the buffer and shift cursor by 32.
BigInt read256() {
final low = read128();
final high = read128();
return (high << 128) | low;
}