enableGate method

void enableGate(
  1. FeatureGate gate
)

Enables gate as a local override.

Implementation

void enableGate(FeatureGate gate) {
  _overrides[gate] = true;
  _changeController.add((gate, true));
}