removeFlagFromResultCache method

Future<void> removeFlagFromResultCache(
  1. String flagName
)

Removes a flag from the result cache.

Implementation

Future<void> removeFlagFromResultCache(String flagName) async {
  await _module.channel.invokeMethod(
    "featureFlagManager#resultCacheRemoveFlag",
    flagName,
  );
}