feat:删除无用的 debug 判断

This commit is contained in:
anfe 2024-04-29 16:21:18 +08:00
parent 0cd65157b7
commit 606cbc76c7

View File

@ -46,23 +46,6 @@ class F {
}
}
static bool get debug {
switch (appFlavor) {
case Flavor.local:
return true;
case Flavor.dev:
return true;
case Flavor.pre:
return true;
case Flavor.sky:
return false;
case Flavor.xhj:
return true;
default:
return false;
}
}
static String get title {
switch (appFlavor) {
case Flavor.local: