modelRequiresHfAuth method
Implementation
bool modelRequiresHfAuth(String modelId) {
final fn = _modelRequiresHfAuth;
if (fn == null) return false;
final id = modelId.toNativeUtf8();
try {
return fn(id) == RAC_TRUE;
} finally {
calloc.free(id);
}
}