evn_config.dart 154 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 class EnvConfig { static const String env = String.fromEnvironment('env', defaultValue: 'dev'); static bool isDev() { return env == 'dev'; } }