isBiometricEnabled property

Future<bool> get isBiometricEnabled

Implementation

Future<bool> get isBiometricEnabled async {
  try {
    final value = await _auth;
    return value != null && value.isBiometric;
  } catch (error) {
    _errorNotifier.value = error.toString();
    return false;
  }
}