1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-11 21:12:44 +08:00

Make feature toggles const

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

@ -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,