Set a feature flag to a specific value.
static void set(String key, bool value) { if (value) { enable(key); } else { disable(key); } }