Check if a specific flag exists
bool flagExists(String key) { if (key.trim().isEmpty) { Logger.w('CFClient: Flag key is empty'); return false; } return _featureFlagsComponent.flagExists(key); }