DecryptResult constructor

DecryptResult({
  1. String? decryptedData,
  2. String? error,
  3. BiometricError? code,
  4. int? selectedFallbackIndex,
  5. String? selectedFallbackText,
})

Implementation

DecryptResult({
  this.decryptedData,
  this.error,
  this.code,
  this.selectedFallbackIndex,
  this.selectedFallbackText,
});