canCheckBiometrics method
Check if biometric hardware is available on the device
Implementation
@override
Future<bool> canCheckBiometrics() async {
final result = await methodChannel.invokeMethod<bool>('canCheckBiometrics');
return result ?? false;
}