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