showBiometricPrompt method

Future<BiometricStatusResult?> showBiometricPrompt({
  1. String? title,
  2. String? description,
  3. String? cancelText,
})

Shows the native biometric authentication prompt.

title - The title of the biometric prompt. description - The description/subtitle of the prompt. cancelText - The text for the negative/cancel button.

Returns a BiometricStatusResult indicating the outcome (success, failure, lockout, etc.).

Implementation

Future<BiometricStatusResult?> showBiometricPrompt({
  final String? title,
  final String? description,
  final String? cancelText,
}) {
  throw UnimplementedError('showBiometricPrompt() has not been implemented.');
}