modelRequiresHfAuth static method

bool modelRequiresHfAuth(
  1. String modelId
)

Whether QHexRT's native product policy marks modelId HF-authenticated.

Implementation

static bool modelRequiresHfAuth(String modelId) {
  if (!isAvailable) return false;
  return (_bindings ??= QhexrtBindings()).modelRequiresHfAuth(modelId);
}