authenticate method
Implementation
@override
Future<bool> authenticate({
required String message,
}) async {
if (is_support_local_auth) {
return await localAuthentication.authenticate(localizedReason: message);
}
return false;
}
@override
Future<bool> authenticate({
required String message,
}) async {
if (is_support_local_auth) {
return await localAuthentication.authenticate(localizedReason: message);
}
return false;
}