hasBiometricSupport method

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

Checks if the device has biometric support.

Implementation

@override
Future<bool?> hasBiometricSupport() async {
  return await methodChannel.invokeMethod<bool>(
      SecurityConstants.HAS_BIOMETRIC_SUPPORT);
}