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