hasEnrolledBiometrics method
Check if device has enrolled biometrics
Implementation
@override
Future<bool> hasEnrolledBiometrics() async {
final result = await methodChannel.invokeMethod<bool>('hasEnrolledBiometrics');
return result ?? false;
}
Check if device has enrolled biometrics
@override
Future<bool> hasEnrolledBiometrics() async {
final result = await methodChannel.invokeMethod<bool>('hasEnrolledBiometrics');
return result ?? false;
}