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