isInfinity method
Implementation
bool isInfinity() {
if (x == null && y == null) return true;
return z == BigInt.zero && y!.toBigInteger() != BigInt.zero;
}
bool isInfinity() {
if (x == null && y == null) return true;
return z == BigInt.zero && y!.toBigInteger() != BigInt.zero;
}