asI128 property

BigInt get asI128

Implementation

BigInt get asI128 {
  if (this > BinaryOps.maxI128 || this < BinaryOps.minI128) {
    throw ArgumentException.invalidOperationArguments(
      "asI128",
      reason: "Invalid 128-bit signed integer.",
    );
  }
  return this;
}