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