InputAsymmetricCipher constructor

const InputAsymmetricCipher({
  1. required InputCipher parent,
  2. required String publicKey,
  3. String? privateKey,
})

Implementation

const InputAsymmetricCipher({
  required this.parent,
  required this.publicKey,
  this.privateKey,
});