AFUpdateAppStateAction.updateMany constructor

AFUpdateAppStateAction.updateMany(
  1. Type area,
  2. Iterable<Object> objs
)

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
  );
}