starwork_flutter/lib/base/app_flavor.dart
2025-08-28 10:39:07 +08:00

13 lines
276 B
Dart

class AppFlavor {
static const String sky = 'sky';
static const String xhj = 'xhj';
static const String current = String.fromEnvironment(
'FLAVOR',
defaultValue: sky,
);
static bool get isSky => current == sky;
static bool get isXhj => current == xhj;
}