clearFeatureFlag method

  1. @override
Future<void> clearFeatureFlag(
  1. String name
)
inherited

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

@override
Future<void> clearFeatureFlag(String name) => client.clearFeatureFlag(name);