SimplePromptResult constructor

SimplePromptResult({
  1. bool? success,
  2. String? error,
  3. BiometricError? code,
  4. int? selectedFallbackIndex,
  5. String? selectedFallbackText,
})

Implementation

SimplePromptResult({
  this.success,
  this.error,
  this.code,
  this.selectedFallbackIndex,
  this.selectedFallbackText,
});