PEMKeyPair constructor

PEMKeyPair(
  1. String privateKeyPEM,
  2. String publicKeyPEM, [
  3. RSAPrivateKey? _privateKey,
  4. RSAPublicKey? _publicKey,
])

Implementation

PEMKeyPair(this.privateKeyPEM, this.publicKeyPEM,
    [this._privateKey, this._publicKey]);