14 lines
323 B
Dart
14 lines
323 B
Dart
abstract final class AppFeatures {
|
|
static const bool enableMining = bool.fromEnvironment(
|
|
'PEYA_ENABLE_MINING',
|
|
defaultValue: true,
|
|
);
|
|
|
|
static const String releaseFlavor = String.fromEnvironment(
|
|
'PEYA_RELEASE_FLAVOR',
|
|
defaultValue: 'mining',
|
|
);
|
|
|
|
static bool get isMiningFlavor => enableMining;
|
|
}
|