# Directly Checking a Flag

You can evaluate the value of a Feature gate by calling `evaluateFeatureGate` directly

```dart
await Toggly.evaluateFeatureGate(
  ["ExampleFeatureKey1", "ExampleFeatureKey2"],
  requirement: FeatureRequirement.all,
  negate: true,
);
```
