clearFeatureFlag method

void clearFeatureFlag(
  1. String name
)

Remove a single feature flag regardless of its current status. This will stop the specified feature flag from being reported. If the named feature flag does not exist this will have no effect.

See also:

Implementation

void clearFeatureFlag(String name) => _featureFlags.clearFeatureFlag(name);