KeyPair constructor
KeyPair({
- required PublicKey? publicKey,
- required PrivateKey? privateKey,
Creates a KeyPair from a public and private key
Implementation
KeyPair({required this.publicKey, required this.privateKey});