registerAll static method
Register multiple feature flags at once.
Implementation
static void registerAll(List<FeatureFlag> flags) {
for (final flag in flags) {
_flags[flag.key] = flag;
}
}
Register multiple feature flags at once.
static void registerAll(List<FeatureFlag> flags) {
for (final flag in flags) {
_flags[flag.key] = flag;
}
}