ente/lib/utils/auth_util.dart
2023-03-11 08:07:14 +05:30

11 lines
338 B
Dart

import 'package:local_auth/local_auth.dart';
import 'package:logging/logging.dart';
Future<bool> requestAuthentication(String reason) async {
Logger("AuthUtil").info("Requesting authentication");
await LocalAuthentication().stopAuthentication();
return await LocalAuthentication().authenticate(
localizedReason: reason,
);
}