fromCbor method

Bip32Ed25519XPublicKey fromCbor(
  1. CborValue value
)

Deserializes the type from cbor.

Implementation

Bip32Ed25519XPublicKey fromCbor(CborValue value) {
  return fromBytes((value as CborBytes).bytes);
}