isZero method

  1. @override
bool isZero()
override

Checks if this ProjectivAffinePoint represents the point at infinity (O)

Implementation

@override
bool isZero() => x == BigInt.zero && y == BigInt.zero;