invert method

  1. @override
Bls12NativeFp? invert()
override

Implementation

@override
Bls12NativeFp? invert() {
  if (isZero()) return null;
  return _exp(p - BigInt.two);
}