Add userExperienceIterationTwo feature flag utility

Added a FeatureFlags utility class to manage feature toggling within the application. This initial commit introduces a flag for the userExperienceIterationTwo feature, allowing for controlled testing and phased rollout as development progresses. The flag can be manually adjusted as needed.
This commit is contained in:
hunteraraujo
2023-09-25 19:30:26 -07:00
parent 075529ddc9
commit bec207568a

View File

@@ -0,0 +1,3 @@
class FeatureFlags {
static const bool userExperienceIterationTwoEnabled = false;
}