isInfinity property

  1. @override
bool get isInfinity
override

Checks if this AffinePointt represents the point at infinity (O), which is defined by having x and y coordinates both equal to zero.

Implementation

@override
bool get isInfinity => x == BigInt.zero && y == BigInt.zero;