app/lib/common/conf/const_conf.dart

9 lines
326 B
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
class ConstConf {
2024-04-16 19:29:19 +08:00
static const String appVersion = "2.11.0 Beta";
2024-05-07 21:11:23 +08:00
static const int appVersionCode = 50;
static const String appVersionDate = "2024-5-07";
2024-03-31 13:30:56 +08:00
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW"];
2024-03-07 23:01:32 +08:00
static const isMSE =
String.fromEnvironment("MSE", defaultValue: "false") == "true";
}