PrivateKey.fromHex constructor

PrivateKey.fromHex(
  1. Curve curve,
  2. String hexRand
)

Implementation

PrivateKey.fromHex(this.curve, String hexRand) {
  D = BigInt.parse(hexRand, radix: 16);
}