PrivateKey.fromHex constructor

PrivateKey.fromHex(String hex, { KeyType algorithm, KeyParameters parameters, ScryptParams scrypt })

Implementation

PrivateKey.fromHex(String hex,
    {KeyType algorithm, KeyParameters parameters, ScryptParams scrypt})
    : this(Convert.hexStrToBytes(hex),
          algorithm: algorithm, parameters: parameters, scrypt: scrypt);