copy method
Copies the private key.
Implementation
@override
Ed25519HDKeyPairData copy() {
if (hasBeenDestroyed) throw _destroyedError();
return Ed25519HDKeyPairData(bytes, publicKey: publicKey);
}
Copies the private key.
@override
Ed25519HDKeyPairData copy() {
if (hasBeenDestroyed) throw _destroyedError();
return Ed25519HDKeyPairData(bytes, publicKey: publicKey);
}