modInverse method

BigInteger modInverse(
  1. BigInteger modulus
)

Returns the modular multiplicative inverse of this BigInteger.

Implementation

BigInteger modInverse(BigInteger modulus) {
  return BigInteger._(_value.modInverse(modulus._value));
}