cake_wallet/lib/utils/feature_flag.dart

9 lines
318 B
Dart
Raw Permalink Normal View History

import 'package:flutter/foundation.dart';
class FeatureFlag {
static const bool isCakePayEnabled = false;
static const bool isExolixEnabled = true;
static const bool isInAppTorEnabled = false;
static const bool isBackgroundSyncEnabled = false;
static const int verificationWordsCount = kDebugMode ? 0 : 2;
}