extractPublicKey method

Future<SimplePublicKey> extractPublicKey(
  1. SimpleKeyPair keyPair
)

Extracts the public key from a key pair.

Implementation

Future<SimplePublicKey> extractPublicKey(SimpleKeyPair keyPair) async {
  return keyPair.extractPublicKey();
}