getRawStoredState

The usage of this API is only useful for internal/dev settings/features If you find yourself having to call this method in production code, then YOU'RE DOING SOMETHING WRONG The raw state is the stored state. isEnabled method takes the raw state and computes whether the feature should be enabled or disabled. eg. by factoring in State.minSupportedVersion amongst others.

You should never use individual properties on that raw state, eg. State.enable to decide whether the feature is enabled/disabled.

Return

the raw State store for this feature flag.