exists static method

bool exists(
  1. String key
)

Check if a feature flag exists.

Implementation

static bool exists(String key) {
  return _flags.containsKey(key);
}