The code below was what we use to use to check if a feature is enabled.
var featureEnabledValue =
await _bulletTrainClient.isFeatureFlagEnabled(key);
What do we use now to replace this. The getFeatureFlagValue returns a key but we need a bool and don't want any magic / const strings in our app that's depending on user input.
The code below was what we use to use to check if a feature is enabled.
What do we use now to replace this. The
getFeatureFlagValuereturns a key but we need a bool and don't want any magic / const strings in our app that's depending on user input.