dispatchLifecycleActions method

void dispatchLifecycleActions(
  1. AFDispatcher dispatcher,
  2. AppLifecycleState lifecycle
)

Implementation

void dispatchLifecycleActions(AFDispatcher dispatcher, AppLifecycleState lifecycle) {
  for(final creator in createLifecycleQueryActions) {
    final action = creator(lifecycle);
    dispatcher.dispatch(action);
  }
}