canAuthenticateWithBiometricsStrong method
Check if device supports strong biometric authentication
Implementation
@override
Future<bool> canAuthenticateWithBiometricsStrong() async {
final result = await methodChannel.invokeMethod<bool>('canAuthenticateWithBiometricsStrong');
return result ?? false;
}