bool isValidApiKey(String apiKey) { if (apiKey.length >= 32) { return true; } else { return false; } }