asI64 property

BigInt get asI64

Implementation

BigInt get asI64 {
  if (this > BinaryOps.maxInt64 || this < BinaryOps.minInt64) {
    throw ArgumentException.invalidOperationArguments(
      "asI64",
      reason: "Invalid 64-bit signed integer.",
    );
  }
  return this;
}