Skip to content

🔐 Secrets Management Standards for Flutter

Core Standards

  1. Don't store secrets hard coded in the code.
  2. Don't add .env files to pubspec.yaml.
  3. Store secrets in .env file and load them using envied package with @EnviedField(obfuscate: true) annotation.