toVerifyKey method

SubstrateED25519Verifier toVerifyKey()

Returns an SubstrateED25519Signer instance based on the available signing key type.

Implementation

SubstrateED25519Verifier toVerifyKey() {
  final keyBytes = _signer.toVerifyKey();
  return SubstrateED25519Verifier._(keyBytes);
}