dispatch function
This is a helper function of store().dispatch(Action action).
Implementation
dispatch(String actionType, [dynamic payload]) {
_store.dispatch(Action(type: actionType, payload: payload));
}
This is a helper function of store().dispatch(Action action).
dispatch(String actionType, [dynamic payload]) {
_store.dispatch(Action(type: actionType, payload: payload));
}