biometricKeyExists method

  1. @override
Future<bool?> biometricKeyExists()
override

Implementation

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