generateAppConstants static method

String generateAppConstants()

Implementation

static String generateAppConstants() {
  return '''
class AppConstants {
// Gemini AI API Key
// Get your API key from: https://makersuite.google.com/app/apikey
static const String geminiApiKey = 'YOUR_GEMINI_API_KEY_HERE';

// TODO: Add your Gemini API key above
// Steps to get API key:
// 1. Go to https://makersuite.google.com/app/apikey
// 2. Sign in with your Google account
// 3. Click "Create API Key"
// 4. Copy the key and paste it above

// Other app constants
static const String appName = 'My App';
static const String appVersion = '1.0.0';
}
''';
}