aiInferenceAllowed property

bool? get aiInferenceAllowed

Whether AI inference is permitted according to this assertion.

Returns null if no relevant entry is found.

Implementation

bool? get aiInferenceAllowed {
  final entry = _findEntry('ai_inference');
  return entry?.isAllowed;
}