Right now the only similar thing to feature flags we have is the kDebugMode constant, which doesn’t really have the benefits of real feature toggle systems, since its only based on the flags used when compiling.
With the help of Firebase Remote Config and the FlutterFire package we should be able to add feature flags for some features that might not be stable or that we might want to slowly test.
Now how do I manage to flag it? I want to keep it for debug and profile modes until I turn the feature flag on
if (kDebugMode || kProfileMode || isFeatureEnabled) {
// Parse/render inline events
}