biometricKeyExists method
Implementation
@override
Future<bool?> biometricKeyExists() async {
try {
return methodChannel.invokeMethod<bool>('biometricKeyExists');
} on PlatformException catch (e) {
debugPrint(e.message);
return false;
}
}