removeFlagFromResultCache method
- String flagName
Removes a flag from the result cache.
Implementation
Future<void> removeFlagFromResultCache(String flagName) async {
await _module.channel.invokeMethod(
"featureFlagManager#resultCacheRemoveFlag",
flagName,
);
}