KeyCreationResult constructor

KeyCreationResult({
  1. String? publicKey,
  2. Uint8List? publicKeyBytes,
  3. String? error,
  4. BiometricError? code,
  5. String? algorithm,
  6. int? keySize,
  7. String? decryptingPublicKey,
  8. String? decryptingAlgorithm,
  9. int? decryptingKeySize,
  10. bool? isHybridMode,
})

Implementation

KeyCreationResult({
  this.publicKey,
  this.publicKeyBytes,
  this.error,
  this.code,
  this.algorithm,
  this.keySize,
  this.decryptingPublicKey,
  this.decryptingAlgorithm,
  this.decryptingKeySize,
  this.isHybridMode,
});