asPositive property
BigInt
get
asPositive
Implementation
BigInt get asPositive {
if (isNegative) {
throw ArgumentException.invalidOperationArguments(
"asPositive",
reason: "Invalid unsigned integer.",
);
}
return this;
}