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