app/lib/common/conf/const_conf.dart

9 lines
312 B
Dart
Raw Normal View History

2024-03-07 23:01:32 +08:00
class ConstConf {
2024-03-30 15:07:32 +08:00
static const String appVersion = "2.10.10 Beta";
static const int appVersionCode = 45;
static const String appVersionDate = "2024-03-30";
2024-03-07 23:01:32 +08:00
static const gameChannels = ["LIVE", "PTU", "EPTU"];
static const isMSE =
String.fromEnvironment("MSE", defaultValue: "false") == "true";
}