Checks if this AffinePointt represents the point at infinity (O), which is defined by having x and y coordinates both equal to zero.
AffinePointt
@override bool get isInfinity => x == BigInt.zero && y == BigInt.zero;