Make feature toggles const

This commit is contained in:
Vishesh Handa
2020-11-07 17:43:29 +01:00
parent ab1e8ad4af
commit cc22a19c7b

View File

@ -1,8 +1,8 @@
import 'package:easy_localization/easy_localization.dart';
class Features {
static bool alwaysPro = false;
static bool perFolderConfig = false;
static const bool alwaysPro = false;
static const bool perFolderConfig = false;
static final all = <Feature>[
Feature.basicSearch,