isFeatureEnabled static method

bool isFeatureEnabled(
  1. String feature
)

Check if a feature flag is enabled.

Implementation

static bool isFeatureEnabled(String feature) {
  return DebugFeatureFlags.isEnabled(feature);
}