fromHex method

Bip32Ed25519XPublicKey fromHex(
  1. String string
)

Constructs a Bip32Ed25519XPublicKey from a hex-encoded list of bytes.

Implementation

Bip32Ed25519XPublicKey fromHex(String string) {
  return fromBytes(hex.decode(string));
}