authenticate method
Implementation
@override
Future<bool> authenticate({bool useFace = false}) async {
final bool? isAuthenticated = await methodChannel.invokeMethod<bool>(
'authenticate',
{'useFace': useFace},
);
return isAuthenticated ?? false;
}