KeyPair constructor

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

Implementation

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