getApiKeyFromConfigOrKeychain function

ApiKeyWithSource? getApiKeyFromConfigOrKeychain()

Get API key from config or platform keychain.

Implementation

ApiKeyWithSource? getApiKeyFromConfigOrKeychain() {
  if (isBareMode()) return null;
  // Placeholder: in full implementation reads from platform keychain or config.
  return null;
}