KeyPair constructor

KeyPair(
  1. String? privateKey,
  2. String publicKey,
  3. String? privateKeyBech32,
  4. String? publicKeyBech32,
)

Implementation

KeyPair(
  this.privateKey,
  this.publicKey,
  this.privateKeyBech32,
  this.publicKeyBech32,
);