The problem I am facing is with ENVied package for flutter. I am trying to save my api keys in environment variables.
I followed these steps.
- Installed these three packages
$ flutter pub add envied
$ flutter pub add --dev envied_generator
$ flutter pub add --dev build_runner
I created .env file and saved my api key in it. File Structure
After this, I created the env.dart file with the following code:
import 'package:envied/envied.dart';
part 'env.g.dart';
@Envied(path: '.env')
abstract class Env {
@EnviedField(varName: 'TEST_KEY')
static final String apiKey = _Env.apiKey;
}
- Then I ran the build runner command.
dart run build_runner build
After this command I faced the error saying
Envied requires types to be explicitly declared. 'apiKey' does not declare a type.
- So I made changes in my code and declared a type of String and ran the command again.
Now I faced another build runner error stating
Environment variable not found for field 'apiKey'.
And a env.g.dart file is not generated.
I have tried a few times and from what I can tell I am following the set up on pub.dev exactly, so not sure how to fix it. I checked out the possible issue here but still none of those responses helped me with this issue.