KeyPair constructor

KeyPair({
  1. required String publicKey,
  2. required String privateKey,
})

Constructs a KeyPair with the specified public and private keys.

Implementation

KeyPair({
  required this.publicKey,
  required this.privateKey,
});