checkFeatureGateCached method

bool checkFeatureGateCached(
  1. String featureKey
)

Check if a feature gate is enabled (cached, may be stale).

Implementation

bool checkFeatureGateCached(String featureKey) {
  final value = _getFeatureValue(featureKey);
  return value == true;
}