AdaPublicKey.fromBytes constructor
Constructs an AdaPublicKey from the given publicKeyBytes
.
Implementation
factory AdaPublicKey.fromBytes(List<int> publicKeyBytes) {
return AdaPublicKey._(Ed25519PublicKey.fromBytes(publicKeyBytes));
}
Constructs an AdaPublicKey from the given publicKeyBytes
.
factory AdaPublicKey.fromBytes(List<int> publicKeyBytes) {
return AdaPublicKey._(Ed25519PublicKey.fromBytes(publicKeyBytes));
}