asU256 property
BigInt
get
asU256
Implementation
BigInt get asU256 {
if (isNegative || this > BinaryOps.maxU256) {
throw ArgumentException.invalidOperationArguments(
"asU256",
reason: "Invalid 256-bit unsigned integer.",
);
}
return this;
}