removeFeatureStateForFeaturesetFeature method

  1. @experimental
Future<void> removeFeatureStateForFeaturesetFeature({
  1. required FeaturesetFeature feature,
  2. String? stateKey,
})

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

Implementation

@experimental
Future<void> removeFeatureStateForFeaturesetFeature(
        {required FeaturesetFeature feature, String? stateKey}) =>
    _mapInterface.removeFeatureStateForFeaturesetFeature(feature, stateKey);