getHasBiometric method
Checks if biometric authentication is available (Android only).
Returns true if fingerprint, face or other biometric authentication is available and can be used. Returns false if no biometric authentication is available.
Implementation
@override
Future<bool> getHasBiometric() async {
return await methodChannel.invokeMethod<bool?>('getHasBiometric') ?? false;
}