Web3PrivateKey.fromHex constructor

Web3PrivateKey.fromHex(
  1. String hex
)

Implementation

factory Web3PrivateKey.fromHex(String hex) {
  return Web3PrivateKey(HexUtils.decode(hex));
}