CryptoKeyPair constructor

CryptoKeyPair({
  1. CryptoKey? privateKey,
  2. CryptoKey? publicKey,
})

Implementation

factory CryptoKeyPair({
  _i3.CryptoKey? privateKey,
  _i3.CryptoKey? publicKey,
}) =>
    CryptoKeyPair._(
      privateKey: privateKey ?? _i6.undefined,
      publicKey: publicKey ?? _i6.undefined,
    );