removeFeatureStateForFeaturesetDescriptor method

  1. @experimental
Future<void> removeFeatureStateForFeaturesetDescriptor({
  1. required FeaturesetDescriptor featureset,
  2. required FeaturesetFeatureId featureId,
  3. String? stateKey,
})

Removes entries from a feature state object of a feature in the specified featureset. Remove a specified property or all property from a feature's state object, depending on the value of stateKey.

Implementation

@experimental
Future<void> removeFeatureStateForFeaturesetDescriptor(
        {required FeaturesetDescriptor featureset,
        required FeaturesetFeatureId featureId,
        String? stateKey}) =>
    _mapInterface.removeFeatureStateForFeaturesetDescriptor(
        featureset, featureId, stateKey);