cake_wallet/lib/utils/feature_flag.dart

7 lines
257 B
Dart
Raw Normal View History

class FeatureFlag {
static const bool isCakePayEnabled = false;
static const bool isExolixEnabled = true;
static const bool isInAppTorEnabled = false;
2024-07-24 22:21:52 +00:00
static const bool isBackgroundSyncEnabled = true;
static const int verificationWordsCount = 2;
}