updateFromRemote method
Update flags from remote config (e.g., GrowthBook).
Implementation
void updateFromRemote(Map<String, dynamic> config) {
for (final entry in config.entries) {
final flag = _flags[entry.key];
if (flag != null) {
_updateFlag(flag, entry.value);
}
}
_notifyListeners();
}