Ejemplo n.º 1
0
        private void Update()
        {
            var text = "Super cool feature NOT enabled";

            if (_featureToggleService.GetValue(SuperCoolFeatureToggle.Name, false))
            {
                text = "Super cool feature ENABLED";
            }

            Status = text;
        }