isCustomApiKeyApproved function

bool isCustomApiKeyApproved(
  1. String apiKey
)

Check if a custom API key has been approved.

Implementation

bool isCustomApiKeyApproved(String apiKey) {
  // Placeholder: checks global config approved list.
  return false;
}