updateComponentRootStateMany<TState extends AFComponentState> method

void updateComponentRootStateMany<TState extends AFComponentState>(
  1. List<Object> toIntegrate
)
inherited

Dispatches an action that updates several blaues in the app state area associated with the TState type parameter.

Implementation

void updateComponentRootStateMany<TState extends AFComponentState>(List<Object> toIntegrate) {
  assert(TState != AFComponentState, "You must specify a state type as a type parameter");
  dispatch(AFUpdateAppStateAction(area: TState, toIntegrate: toIntegrate));
}