getEnabledGates method
Returns the set of all currently enabled gates.
Implementation
Set<FeatureGate> getEnabledGates() {
return FeatureGate.values.where(isEnabled).toSet();
}
Returns the set of all currently enabled gates.
Set<FeatureGate> getEnabledGates() {
return FeatureGate.values.where(isEnabled).toSet();
}