mirror of
https://github.com/ZhuJHua/moodiary.git
synced 2026-04-05 16:31:45 +08:00
9 lines
172 B
Dart
9 lines
172 B
Dart
class Env {
|
|
static String appMode = const String.fromEnvironment(
|
|
'APP_MODE',
|
|
defaultValue: 'release',
|
|
);
|
|
|
|
static bool get debugMode => appMode == 'debug';
|
|
}
|