biometricAuthAvailable method

  1. @override
Future<String?> biometricAuthAvailable()
override

Implementation

@override
Future<String?> biometricAuthAvailable() async {
  try {
    final response =
        await methodChannel.invokeMethod<String>('biometricAuthAvailable');
    return response;
  } on PlatformException catch (e) {
    return e.message;
  }
}