biometricAuthAvailable method
Implementation
@override
Future<String?> biometricAuthAvailable() async {
try {
final response =
await methodChannel.invokeMethod<String>('biometricAuthAvailable');
return response;
} on PlatformException {
rethrow;
}
}