biometricAuthAvailable method

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

Returns information about the biometric availability on the device.

Implementation

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