copy method

Copies the private key.

Implementation

@override
Ed25519HDKeyPairData copy() {
  if (hasBeenDestroyed) throw _destroyedError();

  return Ed25519HDKeyPairData(bytes, publicKey: publicKey);
}