dispatch function

void dispatch (
  1. Action action
)

This is a helper function of store.dispatch(Action action).

Implementation

void dispatch(Action action) {
  _store.dispatch(action);
}