AFUpdateAppStateAction.updateMany constructor
Constructor for updating multiple objects at the root of the AFComponentState
Implementation
factory AFUpdateAppStateAction.updateMany(Type area, Iterable<Object> objs) {
final toIntegrate = objs.toList();
return AFUpdateAppStateAction(
area: area,
toIntegrate: toIntegrate
);
}